/* =========================================================
   7/24 YOL YARDIM — KURUMSAL STİL DOSYASI
   Renk sistemi: Siyah / Beyaz / Kırmızı (üç ayrı, dengeli renk)
   Tipografi: Oswald (başlık) + Inter (gövde)
   ========================================================= */

:root {
  --black:        #0b0b0d;
  --black-2:      #131316;
  --white:        #ffffff;
  --off-white:    #f4f4f3;
  --red:          #e30613;
  --red-dark:     #b3040f;
  --red-glow:     rgba(227, 6, 19, 0.32);

  --ink:          #121214;          /* beyaz zeminde ana metin */
  --muted-dark:   #a6a6ac;          /* siyah zeminde ikincil metin */
  --muted-light:  #5c5c63;          /* beyaz zeminde ikincil metin */

  --line-dark:    rgba(255,255,255,.11);
  --line-light:   rgba(0,0,0,.10);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 12px;
  --container-w: 1200px;

  --reveal-duration: .7s;
  --reveal-ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
i.fa-solid, i.fa-regular, i.fa-brands { line-height: 1; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Scroll ile beliren öğeler ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--fade { transform: none; }

/* Kart gruplarında otomatik kademeli gecikme */
.services-grid .reveal:nth-child(1) { --reveal-delay: .03s; }
.services-grid .reveal:nth-child(2) { --reveal-delay: .09s; }
.services-grid .reveal:nth-child(3) { --reveal-delay: .15s; }
.services-grid .reveal:nth-child(4) { --reveal-delay: .21s; }
.services-grid .reveal:nth-child(5) { --reveal-delay: .27s; }
.services-grid .reveal:nth-child(6) { --reveal-delay: .33s; }
.services-grid .reveal:nth-child(7) { --reveal-delay: .39s; }
.services-grid .reveal:nth-child(8) { --reveal-delay: .45s; }

.features .reveal:nth-child(1) { --reveal-delay: .04s; }
.features .reveal:nth-child(2) { --reveal-delay: .12s; }
.features .reveal:nth-child(3) { --reveal-delay: .20s; }
.features .reveal:nth-child(4) { --reveal-delay: .28s; }

.steps .reveal:nth-child(1) { --reveal-delay: .05s; }
.steps .reveal:nth-child(2) { --reveal-delay: .16s; }
.steps .reveal:nth-child(3) { --reveal-delay: .27s; }

.gallery-grid .reveal:nth-child(1) { --reveal-delay: .03s; }
.gallery-grid .reveal:nth-child(2) { --reveal-delay: .08s; }
.gallery-grid .reveal:nth-child(3) { --reveal-delay: .13s; }
.gallery-grid .reveal:nth-child(4) { --reveal-delay: .18s; }
.gallery-grid .reveal:nth-child(5) { --reveal-delay: .23s; }
.gallery-grid .reveal:nth-child(6) { --reveal-delay: .28s; }

.blog-grid .reveal:nth-child(1) { --reveal-delay: .04s; }
.blog-grid .reveal:nth-child(2) { --reveal-delay: .13s; }
.blog-grid .reveal:nth-child(3) { --reveal-delay: .22s; }

/* Hero: sayfa yüklenirken tek seferlik orkestrasyon (scroll'a bağlı değil) */
.hero__eyebrow, .hero h1, .hero__lead, .hero__actions, .hero__stats, .hero__art {
  opacity: 0;
  animation: hero-in .8s var(--reveal-ease) forwards;
}
.hero__eyebrow { animation-delay: .05s; }
.hero h1 { animation-delay: .15s; }
.hero__lead { animation-delay: .28s; }
.hero__actions { animation-delay: .40s; }
.hero__stats { animation-delay: .52s; }
.hero__art { animation-delay: .30s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 24px var(--red-glow); }
.btn--red:hover { transform: translateY(-2px); background: var(--red-dark); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn--outline-light:hover { border-color: var(--red); color: var(--red); }

.btn--outline-dark { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.2); }
.btn--outline-dark:hover { border-color: var(--red); color: var(--red); }

.btn--call { background: var(--red); color: #fff; padding: 11px 22px; font-size: .95rem; }
.btn--call:hover { background: var(--red-dark); }

/* ---------- Kayan yazı (marquee) ---------- */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .5px;
}
.marquee__track { display: inline-flex; gap: 60px; animation: marquee-scroll 24s linear infinite; padding-left: 100%; }
.marquee__track span { padding-right: 60px; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- Üst bilgi çubuğu (topbar) ---------- */
.topbar { background: var(--black-2); border-bottom: 1px solid var(--line-dark); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar__left { display: flex; align-items: center; gap: 22px; color: var(--muted-dark); }
.topbar__left a { color: var(--muted-dark); display: inline-flex; align-items: center; gap: 7px; }
.topbar__left a:hover { color: var(--red); }
.topbar__left i { color: var(--red); font-size: .82rem; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__hours { color: var(--muted-dark); display: inline-flex; align-items: center; gap: 7px; }
.topbar__hours i { color: var(--red); }
.topbar__socials { display: flex; align-items: center; gap: 14px; }
.topbar__socials a { color: var(--muted-dark); font-size: .92rem; }
.topbar__socials a:hover { color: var(--red); }
@media (max-width: 760px) { .topbar__email, .topbar__hours { display: none; } }
@media (max-width: 560px) { .topbar { display: none; } }

/* ---------- Floating call button ---------- */
.floating-call {
  position: fixed; right: 20px; bottom: 24px; z-index: 999;
  background: var(--red); color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 15px 20px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(227,6,19,.45);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.floating-call i { font-size: 1.05rem; }
.floating-call__ring { position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--red); animation: ring-pulse 1.8s ease-out infinite; }
@keyframes ring-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 640px) { .floating-call__text { display: none; } .floating-call { padding: 16px; } }

/* ---------- Ana navbar ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo-img { height: 44px; }
.brand__badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.brand__word { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.brand__word-num { color: var(--red); font-weight: 700; font-size: 1.02rem; letter-spacing: .5px; }
.brand__word-name { color: var(--white); font-weight: 600; font-size: 1.18rem; letter-spacing: .6px; }

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.02rem;
  color: var(--white); position: relative; padding: 8px 0; letter-spacing: .2px;
}
.main-nav a.is-active, .main-nav a:hover { color: var(--red); }
.main-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); }
.nav-call { display: inline-flex; }

.nav-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 84px; left: 0; right: 0;
    background: var(--black-2); border-bottom: 1px solid var(--line-dark);
    flex-direction: column; align-items: stretch; padding: 22px 24px 30px; gap: 22px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 18px; }
  .nav-call { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 96px 0 116px;
  background:
    radial-gradient(circle at 82% 15%, rgba(227,6,19,.20), transparent 45%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: var(--red);
  font-family: var(--font-display); font-weight: 600; letter-spacing: 1px; margin-bottom: 18px; font-size: .94rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: dot-blink 1.4s ease-in-out infinite; }
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--red); }
.hero__lead { font-size: 1.14rem; max-width: 520px; color: var(--muted-dark); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero__stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--white); font-weight: 700; }
.hero__stat span { font-size: .85rem; color: var(--muted-dark); }
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }

/* ---------- Section yapısı: siyah / beyaz zemin varyantları ---------- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--on-black { background: var(--black); color: var(--white); }
.section--on-black p { color: var(--muted-dark); }
.section--on-white { background: var(--white); color: var(--ink); }
.section--on-white p { color: var(--muted-light); }
.section--alt-black { background: var(--black-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }

.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { color: var(--red); font-family: var(--font-display); font-weight: 600; letter-spacing: 1.3px; font-size: .9rem; }
.section-head h2 { margin-top: 6px; }

/* ---------- Hizmet kartları ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--off-white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 32px 26px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.service-card__icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: var(--red); color: #fff; border-radius: 14px; margin-bottom: 20px;
}
.service-card h3 { color: var(--ink); margin-bottom: 8px; font-family: var(--font-display); font-weight: 600; font-size: 1.24rem; }
.service-card p { font-size: .95rem; margin-bottom: 16px; color: var(--muted-light); }
.service-card__link { color: var(--red); font-weight: 600; font-size: .9rem; font-family: var(--font-display); }
.service-card__link i { margin-left: 4px; transition: transform .18s ease; }
.service-card:hover .service-card__link i { transform: translateX(4px); }

/* ---------- Neden biz / özellikler (siyah zemin) ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature { text-align: center; padding: 10px; }
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(227,6,19,.14); border: 1px solid rgba(227,6,19,.3);
  display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.4rem;
}
.feature h4 { color: var(--white); font-size: 1.08rem; font-family: var(--font-display); font-weight: 600; }
.feature p { font-size: .92rem; }

/* ---------- Süreç / nasıl çalışır (beyaz zemin) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 34px 28px 28px; background: var(--off-white);
  border: 1px solid var(--line-light); border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--red); transform: translateY(-4px); }
.step__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.step h3 { color: var(--ink); }
.step p { color: var(--muted-light); }

/* ---------- Galeri (siyah zemin) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--line-dark); background: var(--black-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: #fff;
}

/* ---------- Blog (beyaz zemin) ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--off-white); border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__date { color: var(--red); font-size: .8rem; font-family: var(--font-display); font-weight: 600; letter-spacing: .5px; }
.blog-card h3 { color: var(--ink); margin: 8px 0; font-size: 1.16rem; }
.blog-card p { font-size: .9rem; color: var(--muted-light); }
.blog-card__link { color: var(--ink); font-weight: 600; font-size: .88rem; font-family: var(--font-display); border-bottom: 1px solid var(--red); padding-bottom: 2px; }

.blog-detail { max-width: 760px; margin: 0 auto; }
.blog-detail__img { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; border: 1px solid var(--line-dark); }
.blog-detail__content p { color: #d7d7d5; font-size: 1.05rem; line-height: 1.85; }
.section--on-white .blog-detail__content p { color: var(--muted-light); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  border-radius: 18px; padding: 56px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.85); margin: 8px 0 0; }
.cta-band .btn--outline-light { border-color: #fff; color: #fff; }
.cta-band .btn--outline-light:hover { background: #fff; color: var(--red); border-color: #fff; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--off-white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { color: var(--ink); }
.contact-info-card ul { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.contact-info-card li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-card .icon-box {
  width: 44px; height: 44px; border-radius: 10px; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; font-size: 1rem;
}
.contact-info-card strong { color: var(--ink); display: block; font-family: var(--font-display); }
.contact-info-card span, .contact-info-card a { color: var(--muted-light); }

.form-card { background: var(--off-white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 36px; }
.form-card h3 { color: var(--ink); }
.form-card > p { color: var(--muted-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: .88rem; color: var(--muted-light); font-family: var(--font-display); font-weight: 500; }
.field input, .field textarea, .field select {
  background: #fff; border: 1px solid var(--line-light); border-radius: 8px;
  padding: 13px 14px; color: var(--ink); font-family: var(--font-body); font-size: .96rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); outline: none; }
.form-alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 20px; font-size: .92rem; }
.form-alert--success { background: rgba(20,150,70,.1); border: 1px solid rgba(20,150,70,.35); color: #147832; }
.form-alert--error { background: rgba(227,6,19,.1); border: 1px solid rgba(227,6,19,.35); color: #b3040f; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); margin-top: 30px; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

/* ---------- Sayfa üst başlığı (iç sayfalar) ---------- */
.page-hero {
  padding: 64px 0 54px;
  background: radial-gradient(circle at 85% 10%, rgba(227,6,19,.18), transparent 45%), linear-gradient(180deg, var(--black-2), var(--black));
  border-bottom: 2px solid var(--red);
  text-align: center;
}
.page-hero .breadcrumb { font-size: .85rem; color: var(--muted-dark); font-family: var(--font-display); }
.page-hero .breadcrumb a { color: var(--muted-dark); }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero h1 { margin-top: 10px; color: var(--white); }
.page-hero p { color: var(--muted-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 2px solid var(--red); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 38px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: var(--font-display); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted-dark); font-size: .93rem; }
.footer-col a:hover { color: var(--red); }
.footer-col--brand p { color: var(--muted-dark); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted-dark); font-size: .9rem; }
.footer-contact i { flex-shrink: 0; margin-top: 3px; color: var(--red); width: 14px; }
.social-icons { display: flex; gap: 12px; margin-top: 18px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .2s ease, border-color .2s ease;
}
.social-icons a:hover { background: var(--red); border-color: var(--red); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; margin-top: 10px; }
.footer-bottom__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--muted-dark); }

/* ---------- Yardımcı sınıflar ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted-light); }

/* ---------- Basit sayfalama ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--line-light); color: var(--ink); font-family: var(--font-display);
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .is-current { background: var(--red); border-color: var(--red); color: #fff; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
}
