/* =====================================================================
   TALYATEST v2 - Modern responsive stylesheet (mobile-first)
   ===================================================================== */

:root {
  /* === Marka renkleri (kurumsal lacivert palet - akredite laboratuvar) === */
  --primary: #1f4e79;          /* Kurumsal lacivert (ana) */
  --primary-dark: #163a5c;     /* Koyu lacivert */
  --primary-darker: #0e2c4a;   /* En koyu lacivert */
  --primary-light: #b8cde2;    /* Açık lacivert ton */
  --accent: #2a6aa3;           /* Petrol mavisi aksan */
  --secondary: #163a5c;        /* İkincil koyu lacivert */
  --gold: #C9A227;             /* Sertifika rozet altın (korunur) */

  /* Gradient tanımları */
  --grad-primary: linear-gradient(135deg, #2a6aa3 0%, #163a5c 100%);
  --grad-primary-soft: linear-gradient(135deg, #c3d3e6 0%, #6e9ec5 100%);
  --grad-hero: linear-gradient(135deg, rgba(31,78,121,.78) 0%, rgba(14,44,74,.62) 100%);
  --grad-section: linear-gradient(180deg, #fbfcfe 0%, #e6eef7 100%);
  --grad-cta: linear-gradient(120deg, #163a5c 0%, #2a6aa3 58%, #5da7c2 100%);

  --bg: #ffffff;
  --bg-alt: #f4f7fb;            /* açık mavi-gri */
  --bg-soft: #e6eef7;           /* yumuşak lacivert */
  --footer-bg: #1f4e79;         /* kurumsal lacivert footer */
  --footer-bg-2: #163a5c;       /* footer alt bant */
  --footer-text: #d6e2f0;
  --text: #0f1c2e;
  --text-muted: #5b6b80;
  --border: #d8e2ee;
  --whatsapp: #25D366;
  --warn: #f3c037;

  --shadow-sm: 0 2px 6px rgba(15,46,77,.08);
  --shadow-md: 0 8px 22px rgba(15,46,77,.14);
  --shadow-lg: 0 18px 42px rgba(15,46,77,.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.28s cubic-bezier(.2,.8,.2,1);
  --container: 1240px;
  --header-h: 86px;

  /* === Kurumsal palet (TURKAK akredite laboratuvar) === */
  --corp-green:      #1f4e79;
  --corp-green-deep: #163a5c;
  --corp-navy:       #1f4e79;
  --corp-navy-deep:  #0e2c4a;
  --corp-ink:        #0d1e36;
  --corp-paper:      #f7f9fb;
  --corp-line:       #e6ebf1;
  --corp-mute:       #5b6b7d;
  --corp-gold:       #c8a04a;

  /* Kategori temalari (slide bazinda data-theme ile devreye girer) */
  --cat-corp:         var(--corp-green);   --cat-corp-deep:     var(--corp-green-deep);
  --cat-water:        #1f4e79;             --cat-water-deep:    #0e2c4a;
  --cat-emission:     #2b4d6a;             --cat-emission-deep: #142a3f;
  --cat-acoustic:     #3d3a78;             --cat-acoustic-deep: #232254;
  --cat-isg:          #2b4d6a;             --cat-isg-deep:      #142a3f;

  --slide-accent:      var(--cat-corp);
  --slide-accent-deep: var(--cat-corp-deep);
}

/* ----- Reset / Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .8rem; line-height: 1.25;
  color: var(--primary-darker); font-weight: 700;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; margin: 0 0 1rem; }
li { margin-bottom: .35rem; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--primary); color: #fff; padding: 8px 14px; z-index: 9999;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

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

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 12px 22px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 14px; line-height: 1;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  text-align: center; justify-content: center;
}
.btn-primary {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 6px 16px rgba(20,58,94,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(20,58,94,.38); color: #fff; filter: brightness(1.05); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--primary-dark); }
.btn-light { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn-light:hover { background: var(--primary-light); color: var(--primary-darker); border-color: var(--primary-light); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-ghost { background: var(--bg-soft); color: var(--primary-dark); border: 1px solid transparent; }
.btn-ghost:hover { background: #fff; color: var(--primary-dark); border-color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ----- Topbar ----- */
.topbar {
  background: #f4f7fb;
  color: var(--primary-darker);
  font-size: 13px;
  padding: 9px 0;
  letter-spacing: .2px;
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
.topbar a { color: var(--primary-darker); }
.topbar a:hover { color: var(--primary-dark); }

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-phone i { color: var(--primary); font-size: 14px; }

.topbar-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--primary-darker);
}
.topbar-badge i { color: var(--primary); font-size: 12px; }
.topbar-sep { color: var(--primary); opacity: .65; margin: 0 -6px; font-weight: 700; }

.topbar-social {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.topbar-social a {
  width: 28px; height: 28px; display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(42,106,163,.14);
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--primary); color: #fff; }

@media (max-width: 767px) {
  .topbar { padding: 10px 0; font-size: 12px; }
  .topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    align-items: center;
  }
  .topbar-phone {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-social {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
  }
  .topbar-trust {
    grid-column: 1 / -1;
    grid-row: 2;
    flex: none;
    justify-content: center;
    gap: 8px 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(42,106,163, 0.28);
  }
  .topbar-sep { display: none; }
  .topbar-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    background: rgba(42,106,163, 0.14);
    border-radius: 8px;
    border: 1px solid rgba(20,58,94, 0.07);
    text-align: center;
    line-height: 1.25;
  }
  .topbar-badge i { font-size: 11px; }
}

/* ----- Sticky Header (modern, refined) ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(216,226,238,.7);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 6px 22px -10px rgba(15,46,77,.18);
  border-bottom-color: rgba(216,226,238,.5);
}
.site-header.scrolled .logo img { height: 58px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 18px;
}
.logo {
  display: inline-flex; flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}
.logo img { height: 70px; width: auto; transition: height var(--transition); }
.logo:hover { transform: translateY(-1px); }

@media (max-width: 991px) {
  .site-header .header-inner { min-height: 94px; }
  .logo img { height: 78px; }
  .site-header.scrolled .logo img { height: 68px; }
}

.hamburger {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
  border-radius: 12px;
  background: var(--bg-soft);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--primary); }
.hamburger:hover span { background: #fff; }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--primary-dark); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] { background: var(--primary); }
.hamburger[aria-expanded="true"] span { background: #fff; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.main-nav { display: flex; align-items: center; gap: 14px; }
.menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2px; align-items: center;
}
.menu > li { position: relative; margin: 0; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .15px;
  color: var(--primary-darker);
  border-radius: 10px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.menu > li > a::after {
  content: ""; position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.menu > li > a:hover { color: var(--primary-dark); background: rgba(31,78,121,.04); }
.menu > li > a:hover::after { transform: scaleX(1); }
.menu > li.is-active > a {
  color: var(--primary-darker);
  background: rgba(31,78,121,.06);
}
.menu > li.is-active > a::after { transform: scaleX(1); }
.menu > li.has-children > a i {
  font-size: 10px;
  margin-left: 2px;
  opacity: .8;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity var(--transition);
}
.menu > li.has-children:hover > a i {
  transform: rotate(180deg); opacity: 1;
}

/* Submenu - polished dropdown */
.submenu {
  position: absolute; top: calc(100% + 4px); left: -8px;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 42px -12px rgba(15,46,77,.22), 0 0 0 1px rgba(216,226,238,.6);
  padding: 8px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(10px) scale(.98);
  transform-origin: top left;
  transition: opacity .25s ease, visibility .25s, transform .35s cubic-bezier(.22,1,.36,1);
  z-index: 200;
}
.submenu::before {
  content: ""; position: absolute; top: -6px; left: 24px;
  width: 12px; height: 12px;
  background: #fff;
  border-top: 1px solid rgba(216,226,238,.6);
  border-left: 1px solid rgba(216,226,238,.6);
  transform: rotate(45deg);
}
.menu > li.has-children:hover > .submenu,
.menu > li.has-children:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.submenu li { margin: 0; }
.submenu li + li { margin-top: 1px; }
.submenu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}
.submenu li a::before {
  content: ""; flex: 0 0 auto;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--corp-line);
  transition: all var(--transition);
}
.submenu li a:hover {
  background: var(--bg-alt);
  color: var(--primary-darker);
  padding-left: 16px;
}
.submenu li a:hover::before {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,78,121,.15);
}

.nav-cta { display: flex; align-items: center; margin-left: 4px; }
.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  border-radius: 10px;
  box-shadow: 0 8px 18px -8px rgba(31,78,121,.45);
}

/* Mobil menüde gösterilir (≤991px); masaüstünde gizli */
.nav-firm-info { display: none; }

/* =====================================================================
   HERO – Kurumsal Full-bleed Slider (v1.2.3)
   - 5 slide, fade + Ken Burns arkaplan + stagger icerik animasyonu
   - 7 sn auto, hover/focus pause, klavye + dokunmatik destek
   - Slide bazinda data-theme ile --slide-accent degisir (tema cascade)
   ===================================================================== */
.hero-fullbleed {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  isolation: isolate;
  background: var(--corp-ink);
  color: #fff;
}
.hero-fullbleed[data-theme="corp"]     { --slide-accent: var(--cat-corp);     --slide-accent-deep: var(--cat-corp-deep); }
.hero-fullbleed[data-theme="emission"] { --slide-accent: var(--cat-emission); --slide-accent-deep: var(--cat-emission-deep); }
.hero-fullbleed[data-theme="water"]    { --slide-accent: var(--cat-water);    --slide-accent-deep: var(--cat-water-deep); }
.hero-fullbleed[data-theme="acoustic"] { --slide-accent: var(--cat-acoustic); --slide-accent-deep: var(--cat-acoustic-deep); }
.hero-fullbleed[data-theme="isg"]      { --slide-accent: var(--cat-isg);      --slide-accent-deep: var(--cat-isg-deep); }

.hero-stage { position: absolute; inset: 0; }

/* Slide kapsayicisi - fade gecisi (sinematik egri) */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.slide.is-active { opacity: 1; z-index: 1; pointer-events: auto; }

/* Arkaplan gorseli + Ken Burns (yavas zoom-out) efekti */
.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(.92) contrast(.96);
  transform: scale(1.08);
  transition: transform 8s linear;
  will-change: transform;
}
.slide.is-active .slide-bg { transform: scale(1); }

/* Cinematic katmanli overlay: sol koyu, sag yumusak + alt vignette */
.slide-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7,22,42,.92) 0%, rgba(7,22,42,.66) 38%, rgba(7,22,42,.30) 70%, rgba(7,22,42,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04) 55%, rgba(0,0,0,.42) 100%);
}
.slide-overlay::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 6% 60%, color-mix(in srgb, var(--slide-accent-deep) 38%, transparent) 0%, transparent 58%);
  pointer-events: none;
}

/* Icerik kapsayicisi - dikey ortalama, container hizali */
.slide-content {
  position: relative; z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(70px, 9vh, 110px) clamp(20px, 5vw, 64px) clamp(80px, 11vh, 130px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 22px;
}

/* Stagger giris animasyonu - aktif slide tetikler */
@keyframes slide-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-content > .slide-eyebrow,
.slide-content > .slide-title,
.slide-content > .slide-sub,
.slide-content > .slide-icons,
.slide-content > .slide-cta { opacity: 0; }
.slide.is-active .slide-content > .slide-eyebrow { animation: slide-rise .85s .15s cubic-bezier(.22,1,.36,1) forwards; }
.slide.is-active .slide-content > .slide-title   { animation: slide-rise .95s .30s cubic-bezier(.22,1,.36,1) forwards; }
.slide.is-active .slide-content > .slide-sub     { animation: slide-rise .95s .45s cubic-bezier(.22,1,.36,1) forwards; }
.slide.is-active .slide-content > .slide-icons   { animation: slide-rise .95s .60s cubic-bezier(.22,1,.36,1) forwards; }
.slide.is-active .slide-content > .slide-cta     { animation: slide-rise .95s .75s cubic-bezier(.22,1,.36,1) forwards; }

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .24em;
  color: #fff; opacity: .94;
  margin: 0;
}
.slide-eyebrow::before {
  content: ""; width: 44px; height: 2px;
  background: var(--slide-accent);
  display: inline-block;
  border-radius: 1px;
}
.slide-title {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0;
  max-width: 920px;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.slide-sub {
  font-size: clamp(18px, 1.85vw, 23px);
  font-weight: 400;
  line-height: 1.58;
  color: rgba(255,255,255,.88);
  margin: 0;
  max-width: 720px;
}
.slide-icons {
  display: flex; flex-wrap: wrap; gap: 16px 26px;
  margin: 4px 0 2px;
  list-style: none; padding: 0;
}
.slide-icons li { margin: 0; }
.slide-icon {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.94);
}
.slide-icon-medal {
  flex: 0 0 54px;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.06) 100%);
  border-radius: 50%;
  font-size: 19px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.slide-icon-label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  max-width: 14ch;
  line-height: 1.3;
}
.slide-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 10px;
}
.slide-cta .btn {
  min-width: 180px;
  justify-content: center;
  padding: 15px 26px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.slide-cta .btn-primary {
  background: var(--slide-accent);
  color: #fff;
  border-color: var(--slide-accent);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.slide-cta .btn-primary:hover {
  background: var(--slide-accent-deep);
  border-color: var(--slide-accent-deep);
  color: #fff;
  transform: translateY(-1px);
}
.slide-cta .btn-outline {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.50);
  backdrop-filter: blur(4px);
}
.slide-cta .btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  color: #fff;
}

/* Slide kontrolleri - ok */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  backdrop-filter: blur(6px);
  font-size: 16px;
}
.slide-arrow:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.65);
  transform: translateY(-50%) scale(1.06);
}
.slide-arrow.prev { left: clamp(12px, 2.5vw, 28px); }
.slide-arrow.next { right: clamp(12px, 2.5vw, 28px); }

/* Alt bant - dots ortada */
.slide-dots {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.36);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.55);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.slide-dot:hover { background: rgba(255,255,255,.75); }
.slide-dot.is-active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.20);
}

/* Alt ilerleme cubugu */
.slide-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,.14);
  z-index: 4;
  overflow: hidden;
}
.slide-progress-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--slide-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--slide-accent) 60%, transparent);
}

/* Sayac - sol alt */
.slide-counter {
  position: absolute;
  bottom: 24px; left: clamp(20px, 4vw, 44px);
  z-index: 5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.78);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 6px;
}
.slide-counter strong {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
}

/* =====================================================================
   SERVICE TILE – Foto kapakli kart (anasayfa services-grid icin)
   .has-photo modifier'i ile aktif - eski ico-wrap'li tile bozulmaz
   ===================================================================== */
.service-tile.has-photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
  display: flex; flex-direction: column;
}
.service-tile.has-photo::before { display: none; }
.service-tile.has-photo .tile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--corp-paper);
}
.service-tile.has-photo .tile-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform .5s ease;
}
.service-tile.has-photo:hover .tile-photo img { transform: scale(1.05); }
.service-tile.has-photo .tile-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(13,30,54,.22) 100%);
}
.service-tile.has-photo .tile-photo .tile-badge {
  position: absolute;
  left: 14px; top: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  z-index: 2;
}
.service-tile.has-photo .tile-photo .tile-badge img {
  width: 26px; height: 26px;
  position: static;
  object-fit: contain;
}
.service-tile.has-photo .tile-body {
  padding: 22px 22px 24px;
  text-align: left;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-tile.has-photo .tile-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--corp-ink);
  font-weight: 700;
  min-height: auto;
}
.service-tile.has-photo .tile-body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--corp-mute);
  line-height: 1.6;
  min-height: auto;
}
.service-tile.has-photo .tile-body .btn {
  font-size: 13px;
  padding: 8px 14px;
  align-self: flex-start;
  margin-top: auto;
}

/* ----- Service Cards (Anasayfa sol kolon) ----- */
.service-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--grad-primary);
  transition: width var(--transition);
}
.service-card:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.service-card:hover::before { width: 6px; }
.service-card .ico {
  width: 72px; height: 72px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); border-radius: 50%;
  transition: all var(--transition);
}
.service-card:hover .ico { background: var(--grad-primary-soft); }
.service-card:hover .ico img { filter: brightness(0) invert(1); }
.service-card .ico img { width: 42px; height: auto; transition: filter var(--transition); }
.service-card .info h3 {
  font-size: 16px; margin: 0 0 6px;
  color: var(--primary-darker); font-weight: 700;
}
.service-card .info p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Big service grid (services landing page) */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin: 32px 0;
}
.service-tile {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-primary); transform: scaleX(.3); transform-origin: left;
  transition: transform var(--transition);
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-tile:hover::before { transform: scaleX(1); }
.service-tile .ico-wrap {
  width: 100px; height: 100px; margin: 0 auto 18px;
  background: var(--bg-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all var(--transition);
}
.service-tile .ico-wrap::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px dashed var(--primary-light);
  opacity: 0; transition: all var(--transition);
}
.service-tile:hover .ico-wrap { background: var(--grad-primary-soft); }
.service-tile:hover .ico-wrap::after { opacity: .5; transform: rotate(30deg); }
.service-tile:hover .ico-wrap img { filter: brightness(0) invert(1); }
.service-tile .ico-wrap img { width: 56px; transition: filter var(--transition); }
.service-tile h3 { font-size: 19px; margin-bottom: 12px; color: var(--primary-darker); }
.service-tile p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; min-height: 72px; line-height: 1.6; }

/* ----- Section utilities ----- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center; margin-bottom: 36px;
}
.section-title .eyebrow {
  display: inline-block; font-size: 13.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  font-weight: 600; margin-bottom: 8px;
}
.section-title h2 { font-size: 2.15rem; margin: 0 0 10px; }
.section-title h2::after {
  content: ""; display: block; width: 70px; height: 3px;
  background: var(--grad-primary); margin: 14px auto 0; border-radius: 2px;
}
.section-title p { color: var(--text-muted); max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.75; }

/* ----- Stats Counter ----- */
.stats {
  background: var(--grad-primary);
  background-attachment: fixed;
  color: #fff; padding: 56px 0;
  position: relative;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 30%),
                    radial-gradient(circle at 80% 60%, rgba(255,255,255,.06), transparent 30%);
  pointer-events: none;
}
.stats > .container { position: relative; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; text-align: center;
}
.stat-item .stat-num {
  font-size: 2.4rem; font-weight: 700; line-height: 1;
  color: #fff;
}
.stat-item .stat-label {
  font-size: 13.5px; margin-top: 8px;
  color: rgba(255,255,255,.85); letter-spacing: .5px;
}
.stat-item i {
  font-size: 28px; margin-bottom: 10px; color: rgba(255,255,255,.7);
}

/* ----- Why us / Features grid ----- */
.features {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; margin-top: 32px;
}
.feature-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; padding: 22px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.feature-card .ic {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--grad-primary-soft); color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(31,78,121,.30);
}
.feature-card .ic.ic--seal {
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(15,46,77, 0.12);
}
.feature-card .ic.ic--seal img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.feature-card h4 { margin: 0 0 6px; font-size: 15.5px; color: var(--primary-darker); }
.feature-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ----- News cards ----- */
.news-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
.news-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.news-body p { font-size: 13.5px; color: var(--text-muted); flex: 1; }
.news-body .more { color: var(--primary); font-weight: 600; font-size: 13px; margin-top: 12px; }
.news-body .more:hover { color: var(--primary-dark); }

/* ----- Anasayfa: Güncel Haberlerimiz (tek sıra; >3 haber = slider) ----- */
.home-news {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.home-news-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.home-news-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.home-news--static .home-news-viewport { overflow: visible; }
@media (min-width: 768px) {
  .home-news--static .home-news-track .news-card {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .home-news--static .home-news-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-news--static .home-news-viewport::-webkit-scrollbar { display: none; }
  .home-news--static .home-news-track .news-card {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
  }
}
.home-news--slider .home-news-viewport { overflow: hidden; }
.home-news--slider .home-news-track .news-card {
  flex-grow: 0;
  flex-shrink: 0;
}
.home-news-nav {
  flex: 0 0 44px;
  width: 44px;
  align-self: center;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 78, 121, 0.2);
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.home-news-nav:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.home-news-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.home-news--static .home-news-nav { display: none; }
@media (prefers-reduced-motion: reduce) {
  .home-news-track { transition: none; }
}

/* ----- CTA ----- */
/* Anasayfa: Haberler bolumu ile CTA arasini ~2 satir yukari (padding daralt) */
.section:has(+ .cta-strip) {
  padding-bottom: 18px;
}

.cta-strip {
  background: var(--grad-cta);
  color: #fff; padding: 50px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.12), transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(255,255,255,.08), transparent 30%);
}
.cta-strip > .container { position: relative; }
.cta-strip h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.9); margin-bottom: 18px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- Page Hero (alt sayfalar) ----- */
.page-hero {
  background: var(--grad-primary);
  color: #fff; padding: 64px 0 44px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.10), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.08), transparent 30%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero.has-banner { padding: 90px 0 64px; }
.page-hero.has-banner .page-hero-title {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 2px 16px rgba(0, 0, 0, 0.2);
}
.page-hero-title {
  color: #fff; font-size: 2rem; margin-bottom: 8px;
}
.page-hero .breadcrumb {
  margin-top: 6px;
}
.breadcrumb { font-size: 13px; }
.breadcrumb ol {
  list-style: none;
  padding: 10px 14px;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  background: rgba(4, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); margin: 0; }
.breadcrumb li i { font-size: 9px; opacity: .65; }
.breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.35); }
.breadcrumb li[aria-current="page"] span { color: #fff; font-weight: 600; }

/* ----- Two-column layout (sidebar + content) ----- */
.two-col {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; padding: 48px 0;
}
/* ===== Sidebar (modernized, no banner image) ===== */
.sidebar {
  position: sticky; top: calc(var(--header-h) + 16px);
  align-self: start;
  display: flex; flex-direction: column; gap: 14px;
}

/* Header card */
.sidebar-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 22px;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 55%, var(--accent) 110%);
  border-radius: var(--radius-md);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 14px 28px -16px rgba(15,46,77,.45), inset 0 0 0 1px rgba(255,255,255,.06);
}
.sidebar-head::before {
  content: ""; position: absolute; inset: auto -40px -40px auto;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
}
.sidebar-head-icon {
  flex: 0 0 auto; width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 20px;
  backdrop-filter: blur(2px);
}
.sidebar-head-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sidebar-head-eyebrow {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.sidebar-head-title {
  margin: 0; font-size: 1.18rem; font-weight: 700; line-height: 1.2;
  color: #fff; letter-spacing: .2px;
}

/* Menu */
.sidebar-menu {
  list-style: none; padding: 8px; margin: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.sidebar-item { margin: 0; }
.sidebar-item + .sidebar-item { margin-top: 2px; }
.sidebar-item a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  position: relative;
}
.sidebar-item-bullet {
  flex: 0 0 auto;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--corp-line);
  border: 2px solid var(--corp-line);
  transition: all var(--transition);
}
.sidebar-item-label { flex: 1; min-width: 0; }
.sidebar-item-arrow {
  flex: 0 0 auto;
  font-size: 12px; color: var(--primary);
  opacity: 0; transform: translateX(-4px);
  transition: all var(--transition);
}
.sidebar-item a:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
}
.sidebar-item a:hover .sidebar-item-bullet {
  background: var(--primary);
  border-color: var(--primary);
}
.sidebar-item a:hover .sidebar-item-arrow {
  opacity: 1; transform: translateX(0);
}
.sidebar-item.is-active a {
  background: linear-gradient(90deg, var(--bg-soft) 0%, #fff 100%);
  color: var(--primary-darker);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--primary);
}
.sidebar-item.is-active .sidebar-item-bullet {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,78,121,.16);
}
.sidebar-item.is-active .sidebar-item-arrow {
  opacity: 1; transform: translateX(0);
}

/* CTA card */
.sidebar-cta {
  background: #fff;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative; overflow: hidden;
}
.sidebar-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(31,78,121,.08) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(42,106,163,.08) 0%, transparent 45%);
  pointer-events: none;
}
.sidebar-cta > * { position: relative; z-index: 1; }
.sidebar-cta-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--primary); padding: 4px 10px;
  background: var(--bg-soft); border-radius: 20px;
  margin-bottom: 10px;
}
.sidebar-cta h4 {
  font-size: 1.08rem; font-weight: 700; color: var(--primary-darker);
  margin: 0 0 8px 0; line-height: 1.3;
}
.sidebar-cta p {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin: 0 0 14px 0;
}
.sidebar-cta .btn { width: 100%; }

/* Contact list */
.sidebar-contact {
  list-style: none; padding: 8px; margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.sidebar-contact li + li { margin-top: 4px; }
.sidebar-contact a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  transition: background var(--transition), transform var(--transition);
}
.sidebar-contact a:hover { background: var(--bg-alt); }
.sidebar-contact-ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: 14px;
  transition: all var(--transition);
}
.sidebar-contact-ic--wa { background: rgba(37,211,102,.12); color: var(--whatsapp); }
.sidebar-contact a:hover .sidebar-contact-ic {
  background: var(--primary); color: #fff;
}
.sidebar-contact a:hover .sidebar-contact-ic--wa {
  background: var(--whatsapp); color: #fff;
}
.sidebar-contact-tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sidebar-contact-lbl {
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.sidebar-contact-val {
  font-size: 13.5px; color: var(--text); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .sidebar { position: static; }
}

/* Content area */
.content {
  background: #fff; padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.content h1 { font-size: 1.85rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--bg-soft); }
.content h1::after {
  content: ""; display: block; width: 70px; height: 3px;
  background: var(--grad-primary); margin-top: 12px; border-radius: 2px;
}
.content h2 { color: var(--primary-dark); margin-top: 28px; padding-left: 14px; border-left: 4px solid var(--primary); }
.content p { color: var(--text); }
.content ul { padding-left: 1.4rem; }
.content ul li { margin-bottom: 8px; }
.content ul li::marker { color: var(--primary); }

/* ----- Iletisim tablosu ----- */
.contact-info {
  display: grid; grid-template-columns: 1fr;
  gap: 14px; margin-top: 20px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-alt); padding: 14px 16px;
  border-radius: var(--radius-sm); border-left: 3px solid var(--primary);
}
.contact-row .ic {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-row .ct { flex: 1; }
.contact-row .ct b { display: block; font-size: 12px; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-row .ct span, .contact-row .ct a { color: var(--text); font-size: 14px; }

/* ----- Form styles ----- */
.form-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin-top: 20px;
}
.form-row { display: flex; flex-direction: column; }
.form-row.two { grid-column: 1 / -1; }
.form-row label {
  font-size: 13px; font-weight: 600;
  color: var(--primary-dark); margin-bottom: 6px;
}
.form-row label .req { color: #e54848; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; transition: all var(--transition);
  min-height: 44px;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,105,155,.15);
}
.form-honeypot { position: absolute; left: -9999px; }
.form-hint {
  display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-muted); line-height: 1.45;
}
.form-msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.form-msg.ok { background: #e6eef7; color: #1f4e79; border-left: 4px solid #2a6aa3; }
.form-msg.err { background: #fde7e7; color: #8b0f0f; border-left: 4px solid #e54848; }

/* ----- Belgeler galeri ----- */
.belgeler-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin: 20px 0 30px;
}
.belge-thumb {
  display: block; aspect-ratio: 1;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  position: relative; background: var(--bg-soft);
  transition: all var(--transition);
}
.belge-thumb:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.belge-thumb img { width: 100%; height: 100%; object-fit: cover; }
.belge-thumb::after {
  content: "\f002"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  background: rgba(1,64,89,.55);
  opacity: 0; transition: opacity var(--transition);
}
.belge-thumb:hover::after { opacity: 1; }

.pdf-list { list-style: none; padding: 0; margin: 20px 0; }
.pdf-list li { margin-bottom: 10px; }
.pdf-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--bg-alt);
  border-radius: var(--radius-sm); border-left: 4px solid var(--primary);
  transition: all var(--transition);
}
.pdf-list a:hover { background: var(--bg-soft); transform: translateX(4px); }
.pdf-list .pdf-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #e74c3c; color: #fff;
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
}
.pdf-list .pdf-text { flex: 1; }
.pdf-list .pdf-text b { display: block; color: var(--primary-dark); font-size: 14px; }
.pdf-list .pdf-text small { color: var(--text-muted); font-size: 12px; }

.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0 28px; }
.yonetmelik-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
  min-width: 520px;
}
.yonetmelik-table th,
.yonetmelik-table td {
  padding: 12px 14px; text-align: left; vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.yonetmelik-table thead th {
  background: var(--bg-alt); color: var(--primary-dark); font-weight: 600;
}
.reg-cat-heading { margin-top: 2.25rem; margin-bottom: 0.35rem; color: var(--primary-darker); font-size: 1.35rem; }
.reg-cat-lead { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
.reg-note { display: inline-block; margin-top: 6px; font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.reg-actions { white-space: normal; }
.reg-actions .btn-sm { margin: 4px 6px 4px 0; }

/* ----- Map ----- */
.map-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 4px 6px rgba(15,46,77, 0.06),
    0 18px 46px rgba(15,46,77, 0.12);
  margin-top: 20px;
  aspect-ratio: 16/9; min-height: 320px;
  border: 1px solid rgba(42,106,163, 0.28);
  background: linear-gradient(145deg, rgba(195,211,230,0.25) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(230,238,247,0.5) 100%);
  position: relative;
}
.map-wrap::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  z-index: 1;
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  display: block;
  position: relative;
  z-index: 0;
}
.map-wrap--raised {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .map-wrap--raised:hover {
    box-shadow:
      0 8px 16px rgba(15,46,77, 0.08),
      0 24px 56px rgba(15,46,77, 0.14);
    transform: translateY(-2px);
  }
}
.map-wrap--lg {
  min-height: 420px;
}

/* ===========================
   Footer – Yeni temiz tasarım
   =========================== */
/* ----- Site footer (kurumsal lacivert, dingin tipografi) ----- */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-bg-2) 100%);
  color: rgba(214,226,240,.86);
  margin-top: 48px;
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-light) 35%, var(--primary-light) 65%, transparent 100%);
  opacity: .55;
}

/* ----- Sertifika / Akreditasyon bandı ----- */
.cert-band {
  position: relative;
  z-index: 2;
  padding: 48px 0 42px;
  /* Topbar ile ayni acik yesil */
  background: #f4f7fb;
  border-bottom: 1px solid var(--border);
}
.cert-head {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 820px;
}
.cert-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary-darker);
  background: rgba(42,106,163,.14);
  border: 1px solid rgba(42,106,163,.28);
  padding: 6px 14px; border-radius: 999px;
}
.cert-eyebrow i { color: var(--primary); }
.cert-title {
  color: var(--primary-darker);
  font-size: 1.8rem;
  margin: 12px 0 8px;
  line-height: 1.25;
}
.cert-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
}
/* Cerceveler kaldirildi: 5 oge yanyana, sade yerlesim */
.cert-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
  align-items: start;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 8px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  transition: transform var(--transition);
}
.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}
.cert-icon {
  width: 168px; height: 168px;
  display: grid;
  place-items: center;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  border: 0;
  margin-bottom: 14px;
  transition: filter var(--transition);
}
.cert-item:hover .cert-icon { filter: drop-shadow(0 8px 18px rgba(15,46,77,.18)); }
.cert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cert-icon-fa { background: var(--grad-primary); border-color: rgba(255,255,255,.35); }
.cert-icon-fa i { font-size: 76px; color: #fff; }
.cert-item strong {
  color: var(--primary-darker);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.25;
}
.cert-item small {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .cert-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 24px;
  }
  .cert-item { flex: 0 0 calc(33.333% - 24px); max-width: 200px; }
  .cert-icon { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
  .cert-list { gap: 24px 16px; }
  .cert-item { flex: 0 0 calc(50% - 16px); max-width: 170px; }
  .cert-icon { width: 124px; height: 124px; }
  .cert-item strong { font-size: 13.5px; }
  .cert-item small { font-size: 12px; }
}

/* ----- Footer ust CTA (klasik: eyebrow + baslik + butonlar) ----- */
.footer-cta {
  padding: 38px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.08) 100%),
    rgba(0,0,0,.05);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-cta-eyebrow {
  display: block;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
  font-weight: 600;
}
.footer-cta h4 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.35;
}
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ----- Footer ana grid (rahat aralikli, hafif kolon karakteri) ----- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: 112px 22px 104px;
  box-sizing: border-box;
}
.footer-col {
  padding: 18px 14px;
  background: none;
  border: 0;
  box-sizing: border-box;
}

.footer-logo {
  width: 278px;
  max-width: 100%;
  height: auto;
  margin: 0 0 18px;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.footer-about p {
  color: rgba(214,226,240,.82);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-darker);
  transform: translateY(-2px);
}

.footer-title {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border: 0;
}
.footer-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(214,226,240,.82);
  font-size: 13.5px;
  transition: color var(--transition), transform var(--transition);
}
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-links a i {
  display: inline-block;
  font-size: 9px;
  color: var(--primary-light);
  opacity: .8;
}

.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(214,226,240,.86);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.footer-contact i {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  color: var(--primary-light);
  font-size: 13.5px;
  flex: 0 0 18px;
  margin-top: 4px;
  text-align: center;
}
.footer-contact a { color: rgba(214,226,240,.86); }
.footer-contact a:hover { color: #fff; }

/* Footer alt bant - yasal linkler */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 32px 16px 8px;
  background: rgba(0,0,0,.10);
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
.footer-legal-nav a {
  color: rgba(214,226,240,.78);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-legal-sep {
  color: rgba(255,255,255,.30);
  user-select: none;
  font-weight: 300;
}

/* ----- Yasal metin sayfalari ----- */
.legal-wrap { max-width: 920px; margin: 0 auto; }
.legal-doc { padding-bottom: 8px; }
.legal-doc .legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.legal-doc h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
  color: var(--primary-darker);
  line-height: 1.35;
}
.legal-doc h2:first-of-type { margin-top: 0.5rem; }
.legal-doc h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.45rem;
  color: var(--text);
  line-height: 1.35;
}
.legal-doc p,
.legal-doc li {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text);
}
.legal-doc ul {
  padding-left: 1.25rem;
  margin: 0.45rem 0 1rem;
}
.legal-doc li { margin-bottom: 0.35rem; }
.legal-doc .legal-note {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  margin: 1rem 0;
}

/* ----- Footer bottom (telif + credit) ----- */
.footer-bottom {
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0 26px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(214,226,240,.72);
  font-size: 12.5px;
  font-weight: 400;
}
.footer-meta { display: none; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(214,226,240,.72);
  font-size: 12px;
}
.footer-credit img {
  height: 22px;
  width: auto;
  opacity: .9;
  filter: brightness(0) invert(1);
}

/* Footer: mobilde daha sıkı dikey ritim, menü iki sütun */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 20px;
    padding: 48px 18px 44px;
    align-items: start;
  }
  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-about .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid > .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }
  .footer-col {
    padding: 8px 0;
  }
  .footer-title {
    margin: 0 0 12px;
    padding-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .footer-links li {
    margin-bottom: 6px;
  }
  .footer-links a {
    font-size: 13px;
    gap: 8px;
  }
  .footer-contact li {
    margin-bottom: 8px;
    font-size: 13px;
  }
}

/* ----- Float buttons ----- */
.float-whatsapp, .float-top {
  position: fixed; right: 20px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); color: #fff; font-size: 22px;
  transition: all var(--transition); cursor: pointer;
}
.float-whatsapp { bottom: 20px; background: var(--whatsapp); }
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.float-top { bottom: 84px; background: var(--primary); opacity: 0; visibility: hidden; }
.float-top.is-visible { opacity: 1; visibility: visible; }
.float-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ----- Müzik Yayın İzni promo modal ----- */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(7, 30, 55, 0.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.promo-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.promo-modal-open { overflow: hidden; }

.promo-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(88vh, 620px);
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(165deg, #fff 0%, #f6fafc 100%);
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(20, 58, 94, 0.06),
    0 24px 48px rgba(7, 30, 55, 0.18);
  border: 1px solid rgba(20, 58, 94, 0.1);
  padding: 28px 24px 0;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.promo-modal-overlay.is-open .promo-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.promo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-dark);
  background: rgba(20, 58, 94, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.promo-modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.promo-modal-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #0a6d9a 100%);
  box-shadow: 0 8px 20px rgba(0, 105, 155, 0.35);
}

.promo-modal-title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  line-height: 1.25;
  padding: 0 36px;
}

.promo-modal-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text, #2c3e50);
  text-align: center;
}

.promo-modal-list {
  margin: 0 0 14px;
  padding: 0 0 0 1.15rem;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted, #4a5a68);
}
.promo-modal-list li { margin-bottom: 8px; }
.promo-modal-list li:last-child { margin-bottom: 0; }

.promo-modal-note {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--text-muted, #5a6b78);
  text-align: center;
  font-style: italic;
}

.promo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.promo-modal-progress {
  height: 4px;
  margin: 0 -24px 0;
  border-radius: 0 0 17px 17px;
  overflow: hidden;
  background: rgba(20, 58, 94, 0.1);
}
.promo-modal-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--primary), #1a8bc4);
}
.promo-modal-progress-bar.is-running {
  animation: promoModalBarShrink 10s linear forwards;
}
@keyframes promoModalBarShrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 480px) {
  .promo-modal { padding: 24px 18px 0; }
  .promo-modal-title { font-size: 1.25rem; padding: 0 32px; }
  .promo-modal-actions { flex-direction: column; }
  .promo-modal-actions .btn { width: 100%; justify-content: center; }
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,30,55,.9);
  display: none; align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92%; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: #fff; font-size: 28px; line-height: 1;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 20px; right: 20px; font-size: 32px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 13.5px; }

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ===================================================================== */

/* >=576 small tablets */
@media (min-width: 576px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .belgeler-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.half { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* >=768 tablets */
@media (min-width: 768px) {
  body { font-size: 15.5px; }
  h1 { font-size: 2.2rem; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .belgeler-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 64px; padding: 144px 32px 132px; }
  .footer-bottom-inner { flex-direction: row; text-align: left; }
  .footer-bottom p, .footer-credit { font-size: 12.5px; }
  .footer-credit { margin-left: auto; }
  .two-col { grid-template-columns: 280px 1fr; padding: 56px 0; }
  .page-hero-title { font-size: 2.4rem; }
  .cert-title { font-size: 2rem; }
  .cert-band { padding: 56px 0 48px; }
  .footer-cta { padding: 44px 0; }
  .footer-cta-inner { flex-direction: row; text-align: left; gap: 24px; }
  .footer-cta-text { flex: 1; }
  .footer-cta h4 { font-size: 1.4rem; }
  .footer-legal { padding: 36px 16px 10px; }
  .footer-bottom { padding: 26px 0 30px; }
}

/* >=1024 desktops */
@media (min-width: 1024px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .stat-item .stat-num { font-size: 3rem; }
  .container { padding: 0 32px; }
  .two-col { grid-template-columns: 300px 1fr; gap: 36px; }
  .page-hero { padding: 72px 0 56px; }
  .page-hero.has-banner { padding: 110px 0 80px; }
  .section { padding: 80px 0; }
  .belgeler-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  /* Cert band: masaustu 5 sutun taban stillerde; gap biraz daha genis */
  .cert-list { gap: 28px 24px; }
}

/* Mobile news slider (yer tasarrufu) */
@media (max-width: 767px) {
  .news-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .news-grid::-webkit-scrollbar { display: none; }
  .news-grid { scrollbar-width: none; }
  .news-card {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
  }
  .news-img { aspect-ratio: 16/8.5; }
  .news-body { padding: 16px; }
  .news-body h3 { font-size: 1rem; margin-bottom: 8px; }
  .news-body p { font-size: 13px; line-height: 1.55; }
}

/* Medium-down: hamburger menu */
@media (max-width: 991px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0;
    width: 88%; max-width: 360px; height: 100vh;
    background: #fff; padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch;
    transform: translateX(100%); transition: transform .35s ease;
    overflow-y: auto; z-index: 99;
    gap: 0;
  }
  .main-nav.is-open { transform: translateX(0); }
  .menu { flex-direction: column; gap: 0; }
  .menu > li { width: 100%; border-bottom: 1px solid var(--border); }
  .menu > li > a {
    padding: 14px 0; font-size: 15px; justify-content: space-between; width: 100%;
    color: var(--primary-darker); background: transparent;
  }
  .menu > li > a:hover, .menu > li.is-active > a { color: var(--primary-dark); background: var(--bg-alt); }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0 0 8px 16px; border: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .menu > li.is-open > .submenu { max-height: 800px; }
  .menu > li.is-open > a i { transform: rotate(180deg); }
  .menu > li.has-children > a i {
    padding: 8px 10px; margin: -8px -10px -8px 8px;
    pointer-events: auto;
  }
  .nav-cta { margin-top: 18px; }
  .nav-cta .btn { width: 100%; }

  .nav-firm-info {
    display: block;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }
  .nav-firm-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
    margin: 0 0 14px;
  }
  .nav-firm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .nav-firm-list > li {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
  }
  .nav-firm-list a {
    color: var(--primary-darker);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-break: break-word;
    text-decoration: none;
  }
  .nav-firm-list a:hover { color: var(--primary); }
  .nav-firm-list .fa-solid:first-child,
  .nav-firm-fax .fa-solid,
  .nav-firm-address .fa-solid {
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    text-align: center;
  }
  .nav-firm-fax,
  .nav-firm-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-firm-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }
  .nav-firm-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--primary-dark);
    transition: background var(--transition), color var(--transition);
  }
  .nav-firm-social a:hover {
    background: var(--primary);
    color: #fff;
  }
  .nav-firm-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
  }
  .nav-firm-more:hover { text-decoration: underline; }
  .nav-firm-more i { font-size: 11px; opacity: 0.85; }

  .body-no-scroll { overflow: hidden; }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 98;
    background: rgba(7,30,55,.4); opacity: 0; visibility: hidden;
    transition: all .3s ease;
  }
  .nav-overlay.is-visible { opacity: 1; visibility: visible; }
}

/* Small phones */
@media (max-width: 480px) {
  .topbar-phone { font-size: 11.5px; gap: 6px; }
  .topbar-social a { width: 28px; height: 28px; font-size: 12px; }
  .section { padding: 40px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .section-title p { font-size: 14.5px; line-height: 1.65; }
  .service-card { padding: 14px; gap: 12px; }
  .service-card .ico { width: 62px; height: 62px; }
  .service-card .ico img { width: 36px; }
  .service-card .info h3 { font-size: 15px; }
  .service-card .info p { font-size: 13px; }
  .page-hero-title { font-size: 1.5rem; }
  .float-whatsapp, .float-top { width: 46px; height: 46px; right: 14px; font-size: 18px; }
  .float-top { bottom: 72px; }
  .float-whatsapp { bottom: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .cert-title { font-size: 1.3rem; }
  .cert-sub { font-size: 13px; }
  .cert-band { padding: 44px 0 36px; }
  /* Mobile kucuk: tek kolon, logo ~2x eski kucuk boyuta gore */
  .cert-list { grid-template-columns: 1fr; gap: 16px; }
  .cert-list .cert-item:nth-child(5) { grid-column: auto; }
  .cert-item { min-height: 268px; padding: 24px 16px 20px; }
  .cert-icon { width: 192px; height: 192px; padding: 10px; margin-bottom: 14px; }
  .cert-icon img { width: 100%; height: 100%; object-fit: contain; }
  .cert-icon-fa i { font-size: 72px; }
  .cert-item strong { font-size: 14.5px; }
  .cert-item small { font-size: 12px; }
  .footer-cta h4 { font-size: 1.05rem; }
}

/* =====================================================================
   HERO + TILE-PHOTO – Mobil kirilmalar
   ===================================================================== */
@media (max-width: 991px) {
  .hero-fullbleed { height: clamp(580px, 88vh, 740px); }
  .slide-content {
    padding: clamp(64px, 8vh, 96px) 24px clamp(78px, 11vh, 110px);
    gap: 16px;
  }
  .slide-title { font-size: clamp(30px, 7.2vw, 46px); }
  .slide-sub { font-size: 17.5px; max-width: 100%; }
  .slide-icons { gap: 14px 20px; }
  .slide-icon-medal { width: 48px; height: 48px; font-size: 17px; flex-basis: 48px; }
  .slide-icon-label { font-size: 13px; max-width: 12ch; }
  .slide-arrow { width: 40px; height: 40px; }
  .slide-cta .btn { min-width: 160px; padding: 13px 22px; font-size: 15.5px; }
}

@media (max-width: 600px) {
  .hero-fullbleed { height: clamp(560px, 92vh, 680px); }
  .slide-content {
    padding: 78px 22px 96px;
    gap: 14px;
  }
  .slide-title { font-size: clamp(28px, 8.5vw, 40px); line-height: 1.15; }
  .slide-sub { font-size: 16.5px; line-height: 1.62; }
  .slide-eyebrow { font-size: 12.5px; letter-spacing: .20em; }
  .slide-eyebrow::before { width: 30px; }
  .slide-icons { display: none; }
  .slide-cta { gap: 10px; }
  .slide-cta .btn { min-width: 0; flex: 1 1 140px; padding: 14px 18px; font-size: 16px; }
  .slide-counter { font-size: 12px; bottom: 22px; }
  .slide-counter strong { font-size: 15px; }
  .slide-dots { bottom: 26px; }
}

/* Reduced motion - kurumsal sektor icin onemli */
@media (prefers-reduced-motion: reduce) {
  .slide { transition: opacity .3s linear; }
  .slide-bg { transition: none; transform: none !important; }
  .slide.is-active .slide-content > * { animation: none; opacity: 1; transform: none; }
  .slide-content > .slide-eyebrow,
  .slide-content > .slide-title,
  .slide-content > .slide-sub,
  .slide-content > .slide-icons,
  .slide-content > .slide-cta { opacity: 1; }
  .slide-dot { transition: none; }
  .slide-arrow { transition: none; }
  .service-tile.has-photo .tile-photo img,
  .service-tile.has-photo:hover .tile-photo img { transition: none; transform: none; }
}

/* ---------------------------------------------------------------------
   Sıkça sorulan sorular (accordion, kompakt)
   --------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.faq-intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted, #4a5a68);
  margin: 0 0 18px;
}
.faq-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border, rgba(20, 58, 94, 0.12));
  border-radius: var(--radius-sm, 8px);
}
.faq-toolbar-icon {
  color: var(--primary);
  font-size: 15px;
}
.faq-filter-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 9px 12px;
  font-size: 14px;
  border: 1px solid var(--border, rgba(20, 58, 94, 0.18));
  border-radius: 6px;
  background: #fff;
}
.faq-filter-input:focus {
  outline: 2px solid rgba(0, 105, 155, 0.35);
  outline-offset: 1px;
}
.faq-count {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}
.faq-expand-all { padding: 6px 12px !important; font-size: 12.5px !important; }
.faq-accordion { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--border, rgba(20, 58, 94, 0.14));
  border-radius: var(--radius-sm, 8px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 58, 94, 0.04);
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px 10px 10px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--primary-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 7px;
  height: 7px;
  margin-left: auto;
  flex-shrink: 0;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translate(-2px, -2px);
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq-num {
  flex-shrink: 0;
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 6px;
}
.faq-q {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-item[open] .faq-q { -webkit-line-clamp: unset; }
.faq-a {
  padding: 0 14px 12px 46px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--text, #2c3e50);
  border-top: 1px dashed rgba(20, 58, 94, 0.1);
  margin-top: 0;
  padding-top: 10px;
}
.faq-foot {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 600px) {
  .faq-toolbar { flex-direction: column; align-items: stretch; }
  .faq-toolbar-icon { display: none; }
  .faq-count { order: 10; }
  .faq-expand-all { flex: 1 1 auto; text-align: center; }
  .faq-a { padding-left: 14px; }
}

/* Müzik Yayın İzni sayfası */
.muzi-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted, #4a5a68);
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm, 8px);
  border: 1px solid rgba(20, 58, 94, 0.1);
}
.muzi-lead-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.muzi-notice {
  margin: 18px 0 22px;
  padding: 14px 18px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(0, 105, 155, 0.06), transparent);
  border-radius: 0 var(--radius-sm, 8px) var(--radius-sm, 8px) 0;
  font-size: 14.5px;
  line-height: 1.55;
}
.muzi-notice p { margin: 0 0 8px; }
.muzi-notice p:last-child { margin-bottom: 0; }
.muzi-doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 16px 0 8px;
}
.muzi-doc-card {
  border: 1px solid rgba(20, 58, 94, 0.12);
  border-radius: var(--radius-sm, 8px);
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 58, 94, 0.04);
}
.muzi-doc-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
}
.muzi-doc-card h3 i { color: var(--primary); opacity: 0.9; }
.muzi-doc-card ul { margin: 0; padding-left: 1.15rem; }
.muzi-doc-card li { margin-bottom: 6px; font-size: 14.5px; line-height: 1.5; }
@media (min-width: 640px) {
  .muzi-doc-grid { grid-template-columns: 1fr 1fr; }
}

/* Terimler sözlüğü */
.sozluk--index,
.sozluk--term {
  max-width: 720px;
}
.sozluk-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted, #4a5a68);
  margin: 0 0 20px;
}
.sozluk-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid rgba(20, 58, 94, 0.12);
  border-radius: var(--radius-sm, 8px);
}
.sozluk-toolbar-icon {
  color: var(--primary);
  opacity: 0.85;
  flex-shrink: 0;
}
.sozluk-filter-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 6px 0;
  color: var(--text);
}
.sozluk-filter-input::placeholder {
  color: var(--text-muted);
}
.sozluk-filter-input:focus {
  outline: none;
}
.sozluk-alpha {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  margin-bottom: 8px;
  scrollbar-width: thin;
}
.sozluk-alpha-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(20, 58, 94, 0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.sozluk-alpha-link:hover {
  background: rgba(0, 105, 155, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}
.sozluk-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sozluk-letter-title {
  font-size: 1.15rem;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-soft);
  color: var(--primary-dark);
}
.sozluk-term-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sozluk-term-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20, 58, 94, 0.08);
}
.sozluk-term-row:last-child {
  border-bottom: none;
}
.sozluk-term-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-dark);
  text-decoration: none;
}
.sozluk-term-link:hover {
  color: var(--primary);
  text-decoration: underline;
}
.sozluk-term-sum {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.sozluk-back {
  margin-bottom: 16px;
}
.sozluk-definition {
  font-size: 15px;
  line-height: 1.68;
  color: var(--text);
}
.sozluk-definition p {
  margin: 0 0 14px;
}
.sozluk-definition p:last-child {
  margin-bottom: 0;
}
.sozluk-related {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm, 8px);
  border: 1px solid rgba(20, 58, 94, 0.1);
}
.sozluk-related h2 {
  margin-top: 0;
  font-size: 1.05rem;
}
.sozluk-related ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* Print friendly */
@media print {
  .topbar, .site-header, .site-footer, .float-whatsapp, .float-top, .promo-modal-overlay, .sidebar { display: none !important; }
  .hero-fullbleed { display: none !important; }
  body { color: #000; background: #fff; }
}
