/* =========================================================
   RAİZ VARLIK YATIRIM HOLDİNG — Kurumsal Web Sitesi
   Mobile-first, sıfırdan HTML/CSS
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Marka renkleri — lacivert favicon'dan (#000e6b) örneklendi */
  --navy-950: #04072b;
  --navy-900: #060a3a;
  --navy-800: #081052;
  --navy-700: #000e6b;
  --navy-600: #1a2a8f;
  --navy-100: #e8eaf6;

  --gold-300: #e6cf9c;
  --gold-400: #d9bc7d;
  --gold-500: #c8a45e;
  --gold-600: #8d6b2a;   /* beyazda 4.92:1 — WCAG AA küçük metin */

  --ink: #131735;
  --muted: #565d7a;
  --bg: #ffffff;
  --bg-soft: #f4f5fb;
  --line: #e4e7f2;

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --header-h: 72px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px -18px rgba(6, 10, 58, 0.18);
  --shadow-card: 0 10px 34px -14px rgba(6, 10, 58, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --section-pad: clamp(3rem, 6.5vw, 5.5rem);
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
}

@media (min-width: 900px) {
  :root { --header-h: 86px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--navy-700); text-decoration: none; }

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

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.7rem 1.2rem;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad); }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(200, 164, 94, 0.14), transparent 55%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #cdd3ee;
}
.section--navy h2, .section--navy h3 { color: #fff; }

/* Section headers */
.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}
.section--navy .eyebrow, .on-dark .eyebrow { color: var(--gold-400); }

.section-title {
  font-size: clamp(1.75rem, 4.6vw, 2.75rem);
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  color: var(--muted);
}
.section--navy .section-lead { color: #b8c0e4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s, color 0.35s, border-color 0.35s;
}
.btn svg { flex: none; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500) 60%, var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 14px 30px -12px rgba(200, 164, 94, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(200, 164, 94, 0.65); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy-700);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(0, 14, 107, 0.5);
}
.btn--navy:hover { background: var(--navy-800); transform: translateY(-2px); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-700);
}
.link-more svg { transition: transform 0.3s var(--ease); }
.link-more:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, box-shadow 0.4s, height 0.4s var(--ease);
}
.site-header--solid,
.site-header.is-scrolled {
  background: rgba(6, 10, 58, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(4, 7, 43, 0.9);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }

@media (min-width: 900px) {
  .brand img { height: 36px; }
}

/* Desktop nav */
.main-nav { display: none; }

@media (min-width: 900px) {
  .main-nav { display: flex; align-items: center; gap: 2rem; }
  .main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.4rem 0;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }
  .main-nav a:hover, .main-nav a.is-active { color: #fff; }
  .main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
  .main-nav .btn { min-height: 44px; padding: 0.55rem 1.4rem; font-size: 0.88rem; }
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.4s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menü açıkken header, overlay'in üzerinde kalmalı (kapatma butonu erişilebilir olsun) */
body.nav-open .site-header {
  z-index: 130;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

/* Mobile overlay menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: calc(var(--header-h) + 1.5rem) var(--container-pad) 2.5rem;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(200, 164, 94, 0.16), transparent 55%),
    linear-gradient(165deg, var(--navy-950), var(--navy-700));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; }

.mobile-nav ul { display: grid; gap: 0.4rem; }
.mobile-nav ul a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.72rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-nav ul a .idx {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-400);
}
.mobile-nav ul a.is-active, .mobile-nav ul a:hover { color: var(--gold-300); }

.nav-open .mobile-nav ul a { opacity: 1; transform: none; }
.nav-open .mobile-nav li:nth-child(1) a { transition-delay: 0.08s; }
.nav-open .mobile-nav li:nth-child(2) a { transition-delay: 0.14s; }
.nav-open .mobile-nav li:nth-child(3) a { transition-delay: 0.2s; }
.nav-open .mobile-nav li:nth-child(4) a { transition-delay: 0.26s; }
.nav-open .mobile-nav li:nth-child(5) a { transition-delay: 0.32s; }
.nav-open .mobile-nav li:nth-child(6) a { transition-delay: 0.38s; }

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: #aab2dc;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease) 0.44s, transform 0.5s var(--ease) 0.44s;
}
.nav-open .mobile-nav__footer { opacity: 1; transform: none; }
.mobile-nav__footer a { color: #fff; font-weight: 600; }
.mobile-nav__footer a:hover { color: var(--gold-300); }

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

/* ---------- Hero (Anasayfa) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  overflow: hidden;
  color: #fff;
}

.hero__bg, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img { object-fit: cover; object-position: 60% 40%; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 15% 100%, rgba(200, 164, 94, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(4, 7, 43, 0.94) 12%, rgba(0, 14, 107, 0.78) 55%, rgba(4, 7, 43, 0.88) 100%);
}

.hero .container { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold-400); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 7.5vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
}

.hero__lead {
  max-width: 46ch;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #c3cbec;
  margin-bottom: 2.2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 3; margin-top: -4.5rem; }
.stats__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
}
.stat__value .suffix { color: var(--gold-500); }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 760px) {
  .stats__card { grid-template-columns: repeat(4, 1fr); }
  .stat + .stat { border-left: 1px solid var(--line); }
}

/* ---------- Hakkımızda teaser ---------- */
.about-grid { display: grid; gap: 2rem; align-items: center; }

.about-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 80% 0%, rgba(200, 164, 94, 0.22), transparent 50%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  padding: clamp(2.2rem, 6vw, 3.2rem);
  color: #c3cbec;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 164, 94, 0.28);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
/* Flex kolon içinde varsayılan align-items:stretch logoyu esnetiyordu */
.about-panel img { height: 44px; width: auto; align-self: flex-start; object-fit: contain; margin-bottom: 1.6rem; }
.about-panel--photo .about-panel__quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold-400);
  margin-bottom: 1.3rem;
}
.about-panel--photo .about-panel__quote,
.about-panel--photo .about-panel__meta { text-shadow: 0 1px 14px rgba(4, 7, 43, 0.75); }

.about-panel__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1.4rem;
}
.about-panel__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.about-copy .section-head { margin-bottom: 1.4rem; }
.about-copy p { color: var(--muted); }

.value-list { display: grid; gap: 0.75rem; margin-top: 1.3rem; }
.value-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}
.value-list li svg { flex: none; margin-top: 0.3rem; color: var(--gold-500); }
.value-list li span small {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
}

/* ---------- Hizmet kartları ---------- */
.services-grid { display: grid; gap: 1.2rem; }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 4.5vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--navy-700);
  background: linear-gradient(140deg, var(--navy-100), #fff);
  border: 1px solid var(--line);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-500);
}
.service-card h3 { font-size: 1.28rem; margin: 0; }
.service-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- İştirakler ---------- */
.subs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }

.sub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem 1.3rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
a.sub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.sub-card img {
  width: min(120px, 60%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: saturate(0.96);
  transition: transform 0.45s var(--ease);
}
.sub-card:hover img { transform: scale(1.05); }

.sub-card strong { font-size: 0.98rem; color: var(--ink); line-height: 1.3; }
.sub-card small {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}

@media (min-width: 640px) {
  .subs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .sub-card { padding: 1.8rem 1.2rem 1.6rem; }
}
@media (min-width: 1080px) {
  .subs-grid { grid-template-columns: repeat(6, 1fr); }
  .sub-card img { width: min(104px, 74%); }
}

/* İştirakler detay sayfası */
.sub-detail-grid { display: grid; gap: 1.2rem; }

.sub-detail {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4.5vw, 2.4rem);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.sub-detail:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.sub-detail__head { display: flex; align-items: center; gap: 1.2rem; }
.sub-detail__head img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
}
.sub-detail__head h3 { margin: 0 0 0.2rem; font-size: 1.3rem; }
.sub-detail__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.sub-detail p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.sub-detail .link-more { margin-top: auto; }
.sub-detail__links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.6rem;
}
.sub-detail__links .link-more { margin-top: 0; }
.sub-detail__links .link-more:last-child { color: var(--gold-600); }

@media (min-width: 760px) {
  .sub-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---------- Haber kartları ---------- */
.news-grid { display: grid; gap: 1.4rem; }

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.news-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(6, 10, 58, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem;
  flex: 1;
}
.news-card h3 { font-size: 1.15rem; margin: 0; }
.news-card p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }

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

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(2.4rem, 7vw, 4.5rem) clamp(1.6rem, 6vw, 4rem);
  text-align: center;
  color: #c3cbec;
  background:
    radial-gradient(100% 140% at 50% -30%, rgba(200, 164, 94, 0.25), transparent 55%),
    linear-gradient(150deg, var(--navy-950), var(--navy-700));
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 164, 94, 0.25);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4.8vw, 2.5rem);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-band p { max-width: 52ch; margin: 0 auto 1.8rem; }

/* ---------- Page hero (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 9vw, 5.5rem)) 0 clamp(3rem, 8vw, 5rem);
  color: #c3cbec;
  background:
    radial-gradient(110% 90% at 90% -20%, rgba(200, 164, 94, 0.18), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-700) 90%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: url("../logos/favico-270x270.png") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(-8deg);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  margin-bottom: 0.5rem;
}
.page-hero p { max-width: 56ch; font-size: clamp(0.98rem, 2.4vw, 1.1rem); margin: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.35); }

/* ---------- İçerik blokları (alt sayfalar) ---------- */
.prose { max-width: 68ch; }
.prose p { color: var(--muted); font-size: 1.02rem; }
.prose strong { color: var(--ink); }

.two-col { display: grid; gap: 2.2rem; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.info-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 0.7rem; }
.info-card h3 svg { color: var(--gold-500); flex: none; }
.info-card p, .info-card address { color: var(--muted); font-style: normal; margin: 0; font-size: 0.97rem; }
.info-card a { font-weight: 700; }
.info-card a:hover { color: var(--gold-600); }

.card-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Misyon / Vizyon */
.mv-grid { display: grid; gap: 1.2rem; }
.mv-card {
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #c3cbec;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 164, 94, 0.22);
  border-radius: calc(var(--radius) - 5px);
}
.mv-card--light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}
.mv-card--light::before { border-color: var(--navy-100); }
.mv-card h3 { color: #fff; font-size: 1.35rem; }
.mv-card--light h3 { color: var(--ink); }
.mv-card p { margin: 0; position: relative; }
@media (min-width: 760px) { .mv-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* Hizmet detay satırları */
.service-row {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.8rem, 5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-500);
}
.service-row h3 { font-size: clamp(1.3rem, 3.4vw, 1.7rem); }
.service-row p { color: var(--muted); margin: 0; }
.service-row ul { display: grid; gap: 0.5rem; margin-top: 1rem; }
.service-row ul li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.service-row ul li::before {
  content: "—";
  color: var(--gold-500);
  flex: none;
}
@media (min-width: 900px) {
  .service-row { grid-template-columns: 120px 1fr 1fr; gap: 2.5rem; align-items: start; }
}

/* ---------- İletişim ---------- */
.contact-grid { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: clamp(300px, 50vw, 440px); border: 0; }

.contact-form { display: grid; gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  min-height: 52px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(0, 14, 107, 0.08);
}
.form-note { font-size: 0.85rem; color: var(--muted); }
@media (min-width: 640px) {
  .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9aa3cf;
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; margin: 0; }

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer h4::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 2px;
  background: var(--gold-500);
  margin-top: 0.6rem;
}
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { color: #9aa3cf; transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }

.footer-contact { display: grid; gap: 0.8rem; }
.footer-contact li { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 0.25rem; color: var(--gold-500); }
.footer-contact a { color: #d5daf2; font-weight: 600; }
.footer-contact a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0 calc(1.4rem + env(safe-area-inset-bottom));
  font-size: 0.82rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* ---------- Reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =========================================================
   PROJELER — Yalova / Çiftlikköy (2026 eklentisi)
   ========================================================= */

/* ---------- Hero duyuru şeridi ---------- */
.hero__notice {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.6rem;
  padding: 0.55rem 1.25rem 0.55rem 0.6rem;
  border: 1px solid rgba(200, 164, 94, 0.4);
  border-radius: 999px;
  background: rgba(4, 7, 43, 0.45);
  backdrop-filter: blur(6px);
  color: #dfe4ff;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  transition: border-color 0.35s, background-color 0.35s, transform 0.35s var(--ease);
}
.hero__notice:hover {
  border-color: var(--gold-400);
  background: rgba(4, 7, 43, 0.62);
  transform: translateY(-2px);
}
.hero__notice .tag {
  flex: none;
  padding: 0.42rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #e63329, #c1121f 65%, #96060f);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -6px rgba(230, 51, 41, 0.75);
}
.hero__notice { border-color: rgba(230, 51, 41, 0.45); }
.hero__notice:hover { border-color: #e63329; }
.hero__notice svg { flex: none; color: var(--gold-300); transition: transform 0.3s var(--ease); }
.hero__notice:hover svg { transform: translateX(4px); }

@media (max-width: 520px) {
  .hero__notice { gap: 0.6rem; padding-right: 0.9rem; font-size: 0.78rem; }
  .hero__notice .tag { font-size: 0.78rem; padding: 0.36rem 0.85rem; letter-spacing: 0.08em; }
}

/* ---------- Proje kartları (anasayfa) ---------- */
.project-cards { display: grid; gap: 1.4rem; }
@media (min-width: 880px) { .project-cards { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.section--navy .project-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.14);
}
a.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.section--navy a.project-card:hover {
  border-color: rgba(200, 164, 94, 0.55);
  box-shadow: 0 26px 50px -24px rgba(0, 0, 0, 0.65);
}

.project-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-900); }
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__media--plan { background: #6d7080; }
.project-card__media--plan img { object-fit: cover; object-position: center 42%; }

.project-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.project-card__badge--soft {
  background: rgba(4, 7, 43, 0.78);
  color: var(--gold-300);
  border: 1px solid rgba(200, 164, 94, 0.4);
}

.project-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.3rem, 4vw, 1.9rem);
}
.project-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.section--navy .project-card__loc { color: var(--gold-300); }
.project-card__loc svg { flex: none; }

.project-card h3 { font-size: clamp(1.25rem, 3.2vw, 1.55rem); margin: 0; }
.section--navy .project-card h3 { color: #fff; }
.project-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.section--navy .project-card p { color: #b8c0e4; }

.project-card__foot {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-tag {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}
.section--navy .project-tag {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #cdd3ee;
}

/* Geliştirici künyesi (iştirak logoları) */
.dev-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: clamp(1.8rem, 5vw, 2.6rem);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  width: fit-content;
  margin-inline: auto;
}
.section--navy .dev-note { border-color: rgba(200, 164, 94, 0.35); }
.dev-note span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.dev-note img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 560px) {
  .dev-note { border-radius: var(--radius); justify-content: center; text-align: center; }
}

/* ---------- Proje detay (projeler.html) ---------- */
.project-block + .project-block {
  margin-top: clamp(3.5rem, 9vw, 6rem);
  padding-top: clamp(3.5rem, 9vw, 6rem);
  border-top: 1px solid var(--line);
}

.project-head { display: grid; gap: 1.6rem; margin-bottom: clamp(1.8rem, 5vw, 2.6rem); }
@media (min-width: 900px) {
  .project-head { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: start; }
}
.project-head h2 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); margin-bottom: 0.6rem; }
.project-head p { color: var(--muted); margin: 0 0 1em; }
.project-head p:last-child { margin-bottom: 0; }

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.project-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(200, 164, 94, 0.2);
}

/* Künye tablosu */
.project-facts {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.project-facts > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem clamp(1.1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--line);
}
.project-facts > div:last-child { border-bottom: 0; }
.project-facts dt {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-facts dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.96rem;
  text-align: right;
}

/* Galeri */
.project-gallery { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) {
  .project-gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--navy-900);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  padding: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.88; }
.gallery-item--plan { aspect-ratio: 16 / 10; background: #6d7080; }
.gallery-item--plan img { object-fit: contain; }
.gallery-item--plan:hover img { transform: none; }

.gallery-item__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.7rem;
  background: linear-gradient(to top, rgba(4, 7, 43, 0.85), transparent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
}

.project-gallery--plan { grid-template-columns: 1fr; }

/* ---------- Lightbox ---------- */
body.lb-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 7, 43, 0.94);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.lightbox__cap {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  color: #dfe4ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 90%;
}
.lightbox__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
.lightbox__btn:hover { background: rgba(200, 164, 94, 0.22); border-color: var(--gold-400); }
.lightbox__close { top: clamp(0.8rem, 3vw, 1.6rem); right: clamp(0.8rem, 3vw, 1.6rem); }
.lightbox__prev { left: clamp(0.5rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(0.5rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }

/* Menüye "Projeler" eklendi — dar masaüstünde aralığı sıkılaştır */
@media (min-width: 900px) and (max-width: 1119px) {
  .main-nav { gap: 1.3rem; }
  .main-nav a { font-size: 0.86rem; }
  .main-nav .btn { padding: 0.55rem 1.1rem; }
}

/* =========================================================
   HERO SLIDER (anasayfa — 3 slayt)
   ========================================================= */
.hero--slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  align-content: stretch;
  padding: 0;
}
.hero__slides {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero__slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 7.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

/* Arka planda yavaş yakınlaşma */
.hero__slide .hero__bg img { transform: scale(1.07); transition: transform 5s linear; }
.hero__slide.is-active .hero__bg img { transform: scale(1); }
.hero__bg--plan img { object-fit: cover; object-position: center 45%; }
/* Proje slaytları: metnin olduğu sol taraf koyu, görsel sağda okunur kalsın */
.hero__bg--project::after {
  background:
    radial-gradient(90% 70% at 12% 100%, rgba(200, 164, 94, 0.16), transparent 55%),
    linear-gradient(100deg, rgba(4, 7, 43, 0.96) 18%, rgba(4, 7, 43, 0.74) 52%, rgba(0, 14, 107, 0.5) 100%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.4rem 0.9rem;
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 94, 0.45);
  background: rgba(4, 7, 43, 0.45);
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* Slayt göstergeleri */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  z-index: 4;
  width: min(1180px, 100%);
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.hero__dot {
  position: relative;
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: width 0.5s var(--ease);
}
.hero__dot::before,
.hero__dot i {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
}
.hero__dot::before { right: 0; background: rgba(255, 255, 255, 0.32); }
.hero__dot i {
  width: 100%;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot:hover::before { background: rgba(255, 255, 255, 0.55); }
.hero__dot.is-active { width: 62px; }
.hero__dot.is-active i { animation: heroProgress var(--hero-dur, 3500ms) linear forwards; }
.hero--slider.is-paused .hero__dot.is-active i { animation-play-state: paused; }

@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 760px) {
  .hero__badge { margin-left: 0; }
}

@media (max-width: 560px) {
  .hero__dots { bottom: 2.6rem; }
  .hero__dot { width: 22px; }
  .hero__dot.is-active { width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  .hero__slide .hero__bg img,
  .hero__slide.is-active .hero__bg img { transform: none; transition: none; }
  .hero__dot.is-active i { animation: none; transform: scaleX(1); }
}

/* =========================================================
   HABER / BLOG — liste kartı meta + yazı sayfası
   ========================================================= */
a.news-card { color: inherit; }
a.news-card:hover h3 { color: var(--navy-700); }

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-card__meta time { color: var(--gold-600); }
.news-card__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.news-card__more {
  margin-top: auto;
  padding-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-700);
}
.news-card__more svg { transition: transform 0.3s var(--ease); }
a.news-card:hover .news-card__more svg { transform: translateX(4px); }

/* ---------- Yazı sayfası ---------- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-meta .cat {
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 94, 0.45);
  background: rgba(4, 7, 43, 0.4);
  color: var(--gold-300);
}
.article-meta time { color: rgba(255, 255, 255, 0.7); }
.article-meta .sep { color: rgba(255, 255, 255, 0.3); }

.article-figure {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.article-figure img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.article-figure figcaption {
  padding: 0.85rem 1.2rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.article-body { max-width: 70ch; margin-inline: auto; }
.article-body > *:first-child { margin-top: 0; }
.article-body p {
  color: #3a4165;
  font-size: clamp(1.02rem, 2.3vw, 1.1rem);
  line-height: 1.85;
  margin: 0 0 1.35em;
}
.article-body .lead {
  font-size: clamp(1.12rem, 2.8vw, 1.32rem);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.8em;
}
.article-body h2 {
  font-size: clamp(1.35rem, 3.4vw, 1.75rem);
  margin: 2.2em 0 0.7em;
}
.article-body h3 { font-size: clamp(1.1rem, 2.8vw, 1.28rem); margin: 1.9em 0 0.6em; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold-600); }

.article-body ul { display: grid; gap: 0.7rem; margin: 0 0 1.6em; }
.article-body ul li {
  position: relative;
  padding-left: 1.6rem;
  color: #3a4165;
  font-size: 1.02rem;
  line-height: 1.7;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
}

.article-body blockquote {
  margin: 2em 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold-500);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  font-style: italic;
  color: var(--ink);
}

/* Yazı içi künye kutusu */
.article-facts {
  margin: 2.2em 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.article-facts h3 { margin: 0 0 0.8rem; font-size: 1.02rem; }
.article-facts dl { margin: 0; display: grid; gap: 0.55rem; }
.article-facts dl > div { display: flex; flex-wrap: wrap; gap: 0.3rem 0.8rem; justify-content: space-between; }
.article-facts dt { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.article-facts dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 0.95rem; }

.article-foot {
  max-width: 70ch;
  margin: clamp(2.4rem, 6vw, 3.4rem) auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  justify-content: space-between;
  align-items: center;
}

/* Haber listesi: 4 kart için 2 sütun (geniş ekranda) */
@media (min-width: 760px) {
  .news-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .news-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   SSS (SIKÇA SORULAN SORULAR) + İLGİLİ HABERLER
   ========================================================= */
.faq-list { display: grid; gap: 0.8rem; max-width: 860px; margin-inline: auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s var(--ease);
}
.faq-item[open] { border-color: rgba(200, 164, 94, 0.5); box-shadow: var(--shadow-card); }

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.1rem, 3vw, 1.6rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 0.35em;
  border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--navy-700); }

.faq-item__body { padding: 0 clamp(1.1rem, 3vw, 1.6rem) 1.3rem; }
.faq-item__body p { margin: 0; color: var(--muted); font-size: 0.99rem; line-height: 1.75; }
.faq-item__body a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* İlgili haberler */
.related {
  max-width: 70ch;
  margin: clamp(2.4rem, 6vw, 3.4rem) auto 0;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.related h2 {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.related ul { display: grid; gap: 0.2rem; }
.related li + li { border-top: 1px solid var(--line); }
.related a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.related a:hover { color: var(--navy-700); }
.related .rel-cat {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* =========================================================
   ANA MENÜ — AÇILIR ALT MENÜ (nav-group)
   ========================================================= */
.nav-group { position: relative; display: none; }

@media (min-width: 900px) {
  .nav-group { display: inline-flex; align-items: center; gap: 0.3rem; }

  .nav-sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s, transform 0.35s var(--ease);
  }
  .nav-sub-toggle:hover { color: var(--gold-300); }
  .nav-group.is-open .nav-sub-toggle,
  .nav-group:hover .nav-sub-toggle { color: var(--gold-300); transform: rotate(180deg); }

  .nav-sub {
    position: absolute;
    top: calc(100% + 1.15rem);
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 130;
    min-width: 264px;
    padding: 0.6rem;
    display: grid;
    gap: 0.1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 164, 94, 0.28);
    background: rgba(4, 7, 43, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.3s;
  }
  /* Fare imlecinin panele giderken menüden düşmemesi için köprü */
  .nav-sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1.15rem;
    height: 1.15rem;
  }

  .nav-group.is-open > .nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  @media (hover: hover) {
    .nav-group:hover > .nav-sub,
    .nav-group:focus-within > .nav-sub {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }
  }

  .nav-sub a {
    display: block;
    padding: 0.62rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    transition: background-color 0.25s, color 0.25s, padding-left 0.3s var(--ease);
  }
  .nav-sub a::after { display: none; }
  .nav-sub a:hover,
  .nav-sub a:focus-visible {
    background: rgba(200, 164, 94, 0.14);
    color: #fff;
    padding-left: 1.15rem;
  }
  .nav-sub a.is-active { color: var(--gold-300); background: rgba(200, 164, 94, 0.1); }

  .nav-sub__all {
    margin-bottom: 0.35rem;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-400) !important;
  }
}

/* ---------- Mobil akordiyon ---------- */
.mobile-nav__group { display: block; }
.mobile-nav__row { display: flex; align-items: center; gap: 0.5rem; }
.mobile-nav__row > a { flex: 1; }

.mobile-sub-toggle {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-300);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.3s, border-color 0.3s;
}
.mobile-sub-toggle:hover { background: rgba(200, 164, 94, 0.18); border-color: var(--gold-400); }
.mobile-nav__group.is-open .mobile-sub-toggle { transform: rotate(180deg); }

.mobile-nav__sub {
  display: grid;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-left: 2.6rem;
  transition: max-height 0.45s var(--ease), opacity 0.35s, margin 0.45s var(--ease);
}
.mobile-nav__group.is-open .mobile-nav__sub {
  max-height: 420px;
  opacity: 1;
  margin-bottom: 0.6rem;
}
.mobile-nav__sub a {
  padding: 0.5rem 0 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72) !important;
  border-bottom: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
.mobile-nav__sub a:hover { color: #fff !important; }
.mobile-nav__sub a.is-active { color: var(--gold-300) !important; }

@media (min-width: 900px) {
  .mobile-nav__group { display: none; }
}

/* =========================================================
   PROJE ALT SAYFALARI — hub kartları, odak kartları,
   kardeş sayfa gezinmesi, taslak notu
   ========================================================= */

/* Hub: tıklanabilir hizmet kartı varyantı */
.services-grid--hub { grid-template-columns: 1fr; }
@media (min-width: 700px)  { .services-grid--hub { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid--hub { grid-template-columns: repeat(3, 1fr); } }

a.service-card { color: inherit; }
.service-card--link { display: flex; flex-direction: column; }
.service-card--link h2 {
  font-size: 1.28rem;
  margin: 0 0 0.6em;
  color: var(--ink);
  transition: color 0.3s;
}
.service-card--link:hover h2 { color: var(--navy-700); }
.service-card--link p { flex: 1; }
.service-card__more {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-600);
}
.service-card__more svg { transition: transform 0.3s var(--ease); }
a.service-card:hover .service-card__more svg { transform: translateX(4px); }

/* Odak kartları (numaralı içerik ızgarası) */
.focus-grid { display: grid; gap: 1rem; }
@media (min-width: 700px)  { .focus-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
@media (min-width: 1080px) { .focus-grid { grid-template-columns: repeat(4, 1fr); } }

.focus-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.focus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.focus-card__num {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-500);
}
.focus-card h3 { font-size: 1.1rem; margin: 0 0 0.5em; }
.focus-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* Kardeş sayfa gezinmesi */
.sibling-grid { display: grid; gap: 0.7rem; max-width: 760px; margin-inline: auto; }

.sibling-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem clamp(1.1rem, 3vw, 1.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s var(--ease);
}
.sibling-card:hover {
  transform: translateX(5px);
  border-color: rgba(200, 164, 94, 0.55);
  box-shadow: var(--shadow-card);
}
.sibling-card__num {
  flex: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-600);
}
.sibling-card__name {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  font-weight: 600;
  line-height: 1.3;
}
.sibling-card svg { flex: none; color: var(--gold-600); transition: transform 0.3s var(--ease); }
.sibling-card:hover svg { transform: translateX(4px); }

/* İçeriği tamamlanmamış bölümler için not */
.draft-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: clamp(1.8rem, 5vw, 2.6rem) 0 0;
  padding: 0.95rem 1.2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 245, 251, 0.7);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.draft-note svg { flex: none; margin-top: 0.15rem; color: var(--gold-600); }

/* =========================================================
   GÖRSEL BANTLARI (stok fotoğraflar)
   ========================================================= */
.media-band { margin: 0; }
.media-band__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--navy-900);
}
.media-band__frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.media-band figcaption {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 620px) {
  .media-band__frame img { aspect-ratio: 4 / 3; }
}

/* Metin + görsel ikili blok */
.media-split { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 900px) {
  .media-split { grid-template-columns: 1fr 1fr; gap: 3.2rem; }
  .media-split--flip .media-split__media { order: -1; }
}
.media-split__media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.media-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.media-split__media:hover img { transform: scale(1.04); }
.media-split__body h2 { margin-top: 0; }
.media-split__body p { color: var(--muted); }
.media-split__body p:last-child { margin-bottom: 0; }

/* Anasayfa hakkımızda paneline fotoğraf zemini */
.about-panel--photo { background: var(--navy-950); }
.about-panel--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 43, 0.22) 0%, rgba(4, 7, 43, 0.58) 50%, rgba(4, 7, 43, 0.96) 100%);
  z-index: 0;
}
.about-panel--photo > * { position: relative; z-index: 1; }
/* Logo kuralını (.about-panel img) ezmek için daha özgül seçici */
.about-panel .about-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

/* Görsel künyesi tablosu */
.credit-list { display: grid; gap: 0.9rem; }
.credit-item {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
@media (min-width: 700px) { .credit-item { grid-template-columns: 150px 1fr; } }
.credit-item img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; }
.credit-item h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.credit-item p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.credit-item .lic {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-600);
}

/* =========================================================
   ANASAYFA HABER BÖLÜMÜ — editoryal grid
   (1 öne çıkan + 3 satır haber)
   ========================================================= */
.news-layout { display: grid; gap: 1.5rem; }
@media (min-width: 940px) {
  .news-layout { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
}

/* Ortak meta satırı */
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-meta__cat { color: var(--gold-600); }
.news-meta__sep { width: 14px; height: 1px; background: var(--line); flex: none; }

/* Öne çıkan haber */
.news-feature {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.45s var(--ease);
}
.news-feature:hover { border-color: rgba(200, 164, 94, 0.5); box-shadow: var(--shadow-card); }
.news-feature__media { overflow: hidden; background: var(--navy-900); }
.news-feature__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.news-feature:hover .news-feature__media img { transform: scale(1.04); }
.news-feature__body { padding: clamp(1.4rem, 3.5vw, 2rem); }
.news-feature h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  line-height: 1.3;
  margin: 0 0 0.6rem;
  transition: color 0.3s;
}
.news-feature:hover h3 { color: var(--navy-700); }
.news-feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.news-feature__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-700);
}
.news-feature__more svg { transition: transform 0.3s var(--ease); }
.news-feature:hover .news-feature__more svg { transform: translateX(4px); }

/* Yan sütun — satır haberler */
.news-side { display: grid; gap: 0; align-content: start; }

.news-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 0;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.news-row:first-child { padding-top: 0; }
.news-row:last-child { border-bottom: 0; }
.news-row:hover { padding-left: 0.5rem; }

.news-row__media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--navy-900);
}
.news-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.news-row:hover .news-row__media img { transform: scale(1.06); }

.news-row__body .news-meta { margin-bottom: 0.4rem; font-size: 0.68rem; }
.news-row h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s;
}
.news-row:hover h3 { color: var(--navy-700); }

@media (min-width: 940px) {
  .news-row { grid-template-columns: 124px minmax(0, 1fr); }
}
@media (max-width: 420px) {
  .news-row { grid-template-columns: 84px minmax(0, 1fr); gap: 0.9rem; }
  .news-row h3 { font-size: 0.95rem; }
}

/* =========================================================
   FAALİYET ALANLARI ŞERİDİ (anasayfa)
   ========================================================= */
.sector-strip { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1000px) { .sector-strip { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.sector-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--navy-950);
  aspect-ratio: 3 / 4;
  color: #fff;
  transition: box-shadow 0.45s var(--ease), border-color 0.4s;
}
@media (max-width: 640px) { .sector-tile { aspect-ratio: 4 / 3; } }

.sector-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.9s var(--ease), opacity 0.5s;
}
.sector-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 43, 0.05) 35%, rgba(4, 7, 43, 0.86) 100%);
}
.sector-tile:hover { border-color: rgba(200, 164, 94, 0.6); box-shadow: 0 24px 46px -22px rgba(6, 10, 58, 0.55); }
.sector-tile:hover img { transform: scale(1.06); opacity: 1; }

.sector-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  display: grid;
  gap: 0.2rem;
}
.sector-tile__label strong {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
}
.sector-tile__label small {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}
.sector-tile__label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-400);
  margin-bottom: 0.55rem;
  transition: width 0.4s var(--ease);
}
.sector-tile:hover .sector-tile__label::before { width: 46px; }


/* Künye sütunundaki destek görseli */
.aside-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  background: var(--navy-900);
}
.aside-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  /* Sağ sütun iki parçalı: destek görseli + künye tablosu */
  .project-head { align-items: start; }
  .project-head > .aside-media { grid-column: 2; grid-row: 1; }
  .project-head > .project-facts { grid-column: 2; grid-row: 2; }
  .project-head > div:first-child { grid-column: 1; grid-row: 1 / span 2; }
}

/* Ardışık bölümlerde çift boşluğu tekile indir —
   yalnızca ZEMİNİ AYNI olan bölümler arasında; renk değişiminde
   dolgu korunur ki zemin bloğu içeriğe yapışmasın. */
.section:not(.section--soft):not(.section--navy) + .section:not(.section--soft):not(.section--navy) { padding-top: 0; }
.section--soft + .section--soft { padding-top: 0; }
.section--navy + .section--navy { padding-top: 0; }

/* =========================================================
   KATALOG (PDF) MENÜ ÖĞESİ
   ========================================================= */
@media (min-width: 900px) {
  .main-nav .nav-katalog {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
  }
  .main-nav .nav-katalog::after { display: none; }
  .main-nav .nav-katalog svg { flex: none; color: var(--gold-300); transition: transform 0.3s var(--ease); }
  .main-nav .nav-katalog:hover {
    border-color: var(--gold-400);
    background: rgba(200, 164, 94, 0.12);
    color: #fff;
  }
  .main-nav .nav-katalog:hover svg { transform: translateY(2px); }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .main-nav { gap: 1.05rem; }
  .main-nav a { font-size: 0.84rem; }
  .main-nav .nav-katalog { padding: 0.38rem 0.7rem; font-size: 0.8rem; }
  .main-nav .btn { padding: 0.5rem 0.95rem; font-size: 0.83rem; }
}

/* Mobil menüde katalog satırı */
.mobile-nav .mobile-katalog { position: relative; }
.mobile-nav .mobile-katalog small {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* =========================================================
   KATALOG SAYFASI — gömülü PDF görüntüleyici
   ========================================================= */
.page-hero--compact { padding-bottom: clamp(2rem, 4vw, 2.8rem); }

.katalog-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.katalog-actions--center { justify-content: center; margin-top: 1.4rem; }

.btn--outline-navy {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: transparent;
}
.btn--outline-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.pdf-frame {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
  height: clamp(520px, 78vh, 900px);
}
.pdf-frame object { width: 100%; height: 100%; display: block; border: 0; }

.pdf-fallback {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  padding: clamp(1.6rem, 5vw, 3rem);
}
.pdf-fallback svg { color: var(--gold-600); margin-bottom: 0.6rem; }
.pdf-fallback h2 { font-size: clamp(1.1rem, 2.8vw, 1.4rem); margin: 0 0 0.4rem; max-width: 24ch; }
.pdf-fallback p { color: var(--muted); margin: 0; max-width: 46ch; font-size: 0.96rem; }

.pdf-note {
  margin: 0.9rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

/* Küçük ekranlarda gömülü PDF güvenilir değil — doğrudan indirme kartını göster */
@media (max-width: 760px) {
  .pdf-frame { height: auto; min-height: 320px; }
  .pdf-frame object { height: 320px; }
}

/* =========================================================
   FOOTER — SOSYAL MEDYA BAĞLANTILARI
   ========================================================= */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.3s, color 0.3s, background-color 0.3s, transform 0.3s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold-400);
  background: rgba(200, 164, 94, 0.14);
  color: var(--gold-300);
  transform: translateY(-2px);
}

/* Footer imza — tasarım/yazılım kredisi */
.footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold-300); }

/* =========================================================
   HUKUKİ METİN SAYFALARI (Gizlilik, KVKK)
   ========================================================= */
.hukuk-metin { max-width: 72ch; margin-inline: auto; }

.hukuk-metin h2 {
  font-size: clamp(1.15rem, 2.9vw, 1.45rem);
  margin: 2.4em 0 0.7em;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.hukuk-metin h2:first-of-type { margin-top: 1.6em; }

.hukuk-metin p {
  color: #3a4165;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.15em;
}
.hukuk-metin strong { color: var(--ink); font-weight: 700; }
.hukuk-metin em { color: var(--ink); }
.hukuk-metin a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.hukuk-metin a:hover { color: var(--gold-600); }

.hukuk-metin ul { display: grid; gap: 0.65rem; margin: 0 0 1.5em; }
.hukuk-metin ul li {
  position: relative;
  padding-left: 1.5rem;
  color: #3a4165;
  font-size: 1rem;
  line-height: 1.75;
}
.hukuk-metin ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
}

.hukuk-tarih {
  display: inline-block;
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 0.6em !important;
}

.hukuk-kutu {
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold-500);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5em;
}
.hukuk-kutu p { margin: 0; }

.hukuk-atif {
  font-size: 0.86em;
  color: var(--muted);
  white-space: nowrap;
}

/* Footer — hukuki bağlantılar */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  align-items: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold-300); }
