/* Wayback (May 2025) Neve + Elementor ana sayfa yaklaşımı — yerel varlıklar */
:root {
  --nv-primary: #10c0d8;
  --nv-text: #242424;
  --nv-site-bg: #ffffff;
  --btn-primary: #e84803;
  --btn-primary-hover: #db4301;
  --menu-hover: #4fce00;
  --menu-current: #1e73be;
  --tpbr-bg: #12bece;
  --container: min(1170px, 100% - 2rem);
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-heading: "Anton", Impact, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nv-text);
  background: var(--nv-site-bg);
}

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

a {
  color: inherit;
}

/* Üst bilgi çubuğu (Top Bar eklentisi) */
.tpbr {
  background: var(--tpbr-bg);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.tpbr a.tel {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
}

.tpbr a.tel:hover {
  background: rgba(0, 0, 0, 0.28);
}

/* Header — logo solda (Neve: desktop max 280px) */
.site-header {
  background: var(--nv-site-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  flex-shrink: 0;
  line-height: 0;
}

.site-logo img {
  width: 180px;
  height: auto;
}

@media (min-width: 960px) {
  .site-logo img {
    width: min(280px, 36vw);
    max-width: 280px;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--nv-text);
  margin: 0 auto;
}

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

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

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

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

/* Masaüstü menü */
.nav-desktop {
  display: none;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: block;
  }
}

.nav-desktop > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.25rem;
}

.nav-desktop > ul > li {
  position: relative;
}

.nav-desktop > ul > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--nv-text);
  border-radius: 3px;
  min-height: 44px;
}

.nav-desktop > ul > li > a:hover {
  color: var(--menu-hover);
}

.nav-desktop > ul > li.current > a {
  color: var(--menu-current);
}

.nav-desktop .caret {
  font-size: 0.65rem;
  opacity: 0.75;
}

.nav-desktop .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}

.nav-desktop li:hover > .sub-menu,
.nav-desktop li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-desktop .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--nv-text);
}

.nav-desktop .sub-menu a:hover {
  color: var(--menu-hover);
  background: rgba(16, 192, 216, 0.08);
}

/* Mobil çekmece */
.drawer-close-btn {
  display: block;
  margin: 0.35rem 0.75rem 0.75rem auto;
  width: 44px;
  height: 44px;
  border: none;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--nv-text);
}

.drawer-close-btn:hover {
  background: #e4e4e4;
}

.nav-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  padding: 1rem 0 2rem;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer > ul > li > a {
  display: block;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-drawer .sub-toggle {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.25rem;
  border: none;
  background: #f8f9fa;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-drawer .sub-menu {
  display: none;
  background: #fff;
}

.nav-drawer .sub-menu.is-open {
  display: block;
}

.nav-drawer .sub-menu a {
  display: block;
  padding: 0.65rem 1.25rem 0.65rem 1.75rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--btn-primary);
  color: #fff;
  z-index: 2000;
  font-weight: 700;
  border-radius: 4px;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Hero (Elementor ilk bölüm + overlay) */
.hero {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background: linear-gradient(120deg, rgba(16, 192, 216, 0.92) 0%, rgba(10, 120, 140, 0.95) 100%),
    url("../assets/images/2019/10/17a335d3-be04-4122-be4a-be6826176892.jpg") center / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.98;
}

/* Dağ şekilli ayırıcı (Elementor mountains) */
.shape-divider {
  line-height: 0;
  margin-top: -1px;
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 72px);
}

.shape-divider path {
  fill: #fff;
}

/* Kutulu hizmet alanı */
.section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.section--muted {
  background: #f5f7f8;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.75rem;
  color: var(--nv-text);
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.svc-card a {
  text-decoration: none;
  color: inherit;
}

.svc-card .icon {
  font-size: 2rem;
  color: var(--nv-primary);
  margin-bottom: 0.75rem;
}

.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.svc-card h3 a:hover {
  color: var(--menu-hover);
}

.svc-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

/* Süreç bölümü */
.process {
  background: linear-gradient(180deg, #e8f8fb 0%, #d4f0f5 100%);
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 2rem;
}

.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.process-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  padding: 0.75rem 1rem 0;
}

.process-card p {
  margin: 0;
  padding: 0.5rem 1rem 1.25rem;
  font-size: 0.92rem;
}

/* Galeri ızgarası (4 sütun) */
.gallery-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gallery-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.gallery-grid .landscape {
  aspect-ratio: 16 / 10;
}

.gallery-grid .portrait {
  aspect-ratio: 3 / 4;
}

.btn-wrap {
  text-align: center;
  margin-top: 1.75rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--btn-primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
}

/* Sayaçlar */
.counters {
  background: #f0f4f5;
}

.counter-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 640px) {
  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.counter-box {
  background: #fff;
  padding: 1.75rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--nv-primary);
  line-height: 1;
}

.counter-title {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Referanslar */
.ref-label {
  display: block;
  text-align: center;
  font-size: 0.95rem;
  color: var(--nv-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.ref-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ref-card {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
}

.ref-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ref-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  text-align: left;
}

.ref-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.ref-wide {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .ref-row-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }
}

/* İletişim / sayfa içi */
.anchor-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.anchor-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.footer {
  background: #1a1d21;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Hakkımızda (ayrı sayfa) --- */
.subpage-hero {
  position: relative;
  min-height: clamp(220px, 32vh, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.25rem;
  /* --subpage-hero-bg: sayfada url('assets/...') ile ezilebilir */
  --subpage-hero-bg: url("../assets/images/2019/10/17a335d3-be04-4122-be4a-be6826176892.jpg");
  background: linear-gradient(120deg, rgba(16, 192, 216, 0.88) 0%, rgba(10, 120, 140, 0.92) 100%),
    var(--subpage-hero-bg) center / cover no-repeat;
  color: #fff;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.subpage-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
}

.about-panel {
  position: relative;
  background: #fff;
  padding: clamp(1.75rem, 4vw, 3rem) 0 0;
}

.about-panel__wave {
  line-height: 0;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.about-panel__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 7vw, 64px);
}

.about-panel__wave path {
  fill: #0b7d8f;
}

.about-intro {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro figure {
  margin: 0;
}

.about-intro figcaption {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--nv-text);
}

.about-prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  letter-spacing: 0.5px;
}

.about-prose .lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

@media (min-width: 640px) {
  .thumb-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

.thumb-strip img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 169 / 300;
}

.about-split {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.about-split h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.about-split p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-split img {
  border-radius: 4px;
  width: 100%;
}

.about-cta {
  background: linear-gradient(115deg, rgba(16, 192, 216, 0.95) 0%, rgba(8, 100, 118, 0.98) 100%);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.about-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-cta__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.about-cta p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.about-cta .btn-primary {
  justify-self: center;
}

@media (min-width: 768px) {
  .about-cta .btn-primary {
    justify-self: end;
  }
}

/* --- Belgelerimiz (sayfa) --- */
.belge-page-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.belge-page-divider hr {
  border: 0;
  height: 2px;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(16, 192, 216, 0.45), transparent);
}

.belge-strip {
  background: #f5f7f8;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  margin-top: 0;
}

.belge-strip .container {
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.belge-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.belge-grid {
  display: grid;
  gap: 0.85rem;
}

/* Üst sıra: 4 yatay belge — dar ekranda 2+2, genişte tek sıra */
.belge-grid--landscape {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .belge-grid--landscape {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Alt sıra: 3 dikey belge — dar ekranda alt alta, genişte tek sıra */
.belge-grid--portrait {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .belge-grid--portrait {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 720px) {
  .belge-grid--portrait {
    gap: 1rem;
  }
}

.belge-card figure {
  margin: 0;
}

/* Belge önizlemesi: dikey logo watermark (indirilen dosyada yok, yalnızca sitede) */
.belge-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f0f2f4;
}

.belge-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 220px);
  aspect-ratio: 1024 / 273;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: url("../assets/images/2019/10/yenilogo-300x80.png") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.belge-thumb img {
  position: relative;
  z-index: 0;
  display: block;
}

.belge-thumb.belge-thumb--modal::after {
  width: min(58%, 300px);
  opacity: 0.28;
}

.belge-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.5rem, env(safe-area-inset-top, 0px)) max(0.5rem, env(safe-area-inset-right, 0px))
    max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.5rem, env(safe-area-inset-left, 0px));
}

.belge-lightbox[hidden] {
  display: none !important;
}

.belge-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(10, 15, 20, 0.78);
  cursor: pointer;
}

.belge-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 960px);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.belge-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.belge-lightbox__close:hover,
.belge-lightbox__close:focus-visible {
  background: rgba(0, 0, 0, 0.85);
  outline: 2px solid var(--nv-primary, #10c0d8);
  outline-offset: 2px;
}

.belge-lightbox__caption {
  margin: 0;
  padding: 0.85rem 3rem 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.belge-lightbox__scroll {
  overflow: auto;
  flex: 1;
  min-height: 0;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #e8ecef;
}

.belge-thumb.belge-thumb--modal {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.belge-thumb.belge-thumb--modal img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
}

.belge-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.belge-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.belge-card:focus-visible {
  outline: 2px solid var(--nv-primary);
  outline-offset: 2px;
}

.belge-card img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.belge-card figcaption {
  padding: 0.5rem 0.65rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shape-divider--on-muted path {
  fill: #0b7d8f;
}

.belge-strip .shape-divider {
  margin-bottom: -1px;
}

.hizmet-page-grid-wrap {
  padding-bottom: 0;
}

.hizmet-page-grid-wrap .shape-divider {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

article.svc-card[id] {
  scroll-margin-top: 6rem;
}
