/* ============================================
   Av. İlayda Eski — Avukatlık Bürosu
   Lacivert & Altın Tema
   ============================================ */

:root {
  --navy-900: #081633;
  --navy-800: #0a1f3c;
  --navy-700: #102a4c;
  --navy-600: #1a3a63;
  --navy-100: #e8edf5;
  --gold: #c9a96a;
  --gold-dark: #b39251;
  --ink: #22293a;
  --muted: #5b6474;
  --bg: #f7f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(8, 22, 51, 0.10);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text;
  user-select: text;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}
.container-narrow { width: min(820px, 92%); }

h1, h2, h3 { font-family: var(--font-serif); color: var(--navy-800); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 24px rgba(201, 169, 106, 0.4); }

.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-600); box-shadow: 0 8px 24px rgba(8, 22, 51, 0.3); }

.btn-outline { border: 1.5px solid var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: var(--white); }

.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-800); }

.btn-whatsapp { background: #25d366; color: #fff; margin-top: 1.5rem; }
.btn-whatsapp:hover { background: #1ebe5b; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }

.btn-block { width: 100%; }

/* ---------- Üst Bilgi Çubuğu ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-links a:hover { color: var(--gold); }

/* ---------- Menü ---------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(8, 22, 51, 0.07);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy-800);
  color: var(--gold);
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-mark svg { width: 27px; height: 27px; }
.logo-text { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy-800); }
.logo-text strong { font-weight: 700; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--navy-800);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-900) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Kahraman Alanı ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,106,0.14) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }

.hero-stats { display: flex; gap: 2.8rem; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.scales-icon { color: var(--gold); width: 96px; margin: 0 auto 1.4rem; }
.hero-card-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
}
.hero-card-name {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Güven Şeridi ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--navy-100);
  padding: 1.8rem 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust-icon { font-size: 1.6rem; line-height: 1; margin-top: 2px; }
.trust-item strong { color: var(--navy-800); display: block; font-size: 0.95rem; }
.trust-item p { font-size: 0.84rem; color: var(--muted); }

/* ---------- Bölümler ---------- */
.section { padding: 5.5rem 0; }
.section-navy { background: var(--navy-800); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-sub { color: rgba(255,255,255,0.7); }

.section-eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.section-navy .section-eyebrow { color: var(--gold); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-sub { color: var(--muted); margin-top: 0.8rem; }

/* ---------- Hakkımda ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-self: center;
}
.about-frame {
  width: 100%;
  max-width: 360px;
}
.about-frame {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,169,106,0.35);
  border-radius: 10px;
  pointer-events: none;
}
.about-monogram {
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-monogram svg { width: 84px; height: 84px; }
.about-frame p { font-family: var(--font-serif); font-size: 1.5rem; }
.about-frame span { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.12em; text-transform: uppercase; }

.about-content h2 { margin-bottom: 1.3rem; }
.about-content p { color: var(--muted); margin-bottom: 1rem; }
.about-content p strong { color: var(--navy-800); }

.about-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0 2rem; }
.about-badges li {
  background: var(--navy-100);
  color: var(--navy-700);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ---------- Çalışma Alanları ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,169,106,0.5);
}
.service-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.service-card h3 { color: var(--white); margin-bottom: 0.7rem; font-size: 1.15rem; }
.service-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ---------- Süreç ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.step-no {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ---------- CTA Bant ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 3.2rem 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- SSS ---------- */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(8,22,51,0.06);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--navy-800);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-lead { color: rgba(255,255,255,0.75); margin: 0.8rem 0 2rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(201,169,106,0.14);
  border: 1px solid rgba(201,169,106,0.4);
  border-radius: 10px;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-list strong { color: var(--gold); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-list a, .contact-list div > span { color: rgba(255,255,255,0.88); font-size: 0.97rem; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1.4rem; font-size: 1.4rem; }
.contact-form label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #dde3ec;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-consent {
  display: flex !important;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400 !important;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
}
.form-consent input { width: auto; margin-top: 2px; }
.form-note { font-size: 0.74rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

/* Form durum mesajları */
.form-alert {
  border-radius: 9px;
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-alert-error { background: #fdecea; color: #a33a2f; border: 1px solid #f2c4bd; }
.form-alert-info { background: #fff6e3; color: #8a6a1f; border: 1px solid #ecd9a8; }
.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success .form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #e8f6ec;
  color: #2e8b57;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
}
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Alt Bilgi ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem 2.5rem;
}
.footer-brand { display: flex; gap: 0.9rem; align-items: center; }
.footer-brand strong { color: var(--white); font-family: var(--font-serif); font-size: 1.15rem; }
.footer-brand p { font-size: 0.8rem; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  flex-basis: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.3rem;
  font-size: 0.74rem;
  line-height: 1.7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}
.footer-legal p { text-align: right; margin-left: auto; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ---------- WhatsApp Yüzen Buton ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Dil Menüsü (açılır) ---------- */
.lang-dd { position: relative; }
.lang-dd summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.lang-dd summary::-webkit-details-marker { display: none; }
.lang-dd summary::after {
  content: "▾";
  font-size: 0.72em;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.lang-dd[open] summary::after { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(8, 22, 51, 0.18);
  padding: 0.45rem 0;
  min-width: 132px;
  z-index: 130;
}
.lang-dd-menu a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.lang-dd-menu a:hover { background: var(--navy-100); color: var(--navy-800); }

/* ---------- Mobil ---------- */
@media (max-width: 960px) {
  /* Menü: dar ve katlanabilir ekranlarda (Galaxy Z Fold dahil) hamburgere geç */
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
    z-index: 105;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--white); font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span { background: var(--white); }

  /* Mobil menüde dil seçici */
  .nav .lang-dd summary { color: var(--white); font-size: 1.05rem; }
  .nav .lang-dd-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0.3rem 0 0 1rem;
    min-width: 0;
  }
  .nav .lang-dd-menu a { color: rgba(255,255,255,0.8); padding: 0.3rem 0; font-size: 0.95rem; }
  .nav .lang-dd-menu a:hover { background: transparent; color: var(--gold); }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 380px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-legal { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal p { text-align: center; margin-left: 0; }
  .footer-legal-links { justify-content: center; }
}

/* ---------- Dil Seçici ---------- */
.lang-switch { display: inline-flex; gap: 0; margin-left: 0.6rem; }
.lang-switch a {
  padding: 0 0.5rem;
  border-left: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
}
.lang-switch a:first-child { border-left: none; }
.lang-switch a.active { color: var(--gold); font-weight: 700; }

/* ---------- Kahraman Kartı Alt Yazısı ---------- */
.hero-card-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin: -0.4rem 0 1rem;
}

/* ---------- Alternatif Bölüm Zemini ---------- */
.section-alt { background: #eef1f7; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--navy-800);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(8,22,51,0.16); }
.post-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--navy-100);
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.post-card h3 { margin-bottom: 0.6rem; font-size: 1.18rem; }
.post-card p { color: var(--muted); font-size: 0.9rem; flex-grow: 1; }
.post-more { color: var(--gold-dark); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; }
.post-date { color: var(--muted); font-size: 0.78rem; margin-bottom: 0.5rem; display: block; }
.post-card-cta {
  border-top-color: var(--gold);
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
}

/* ---------- İç Sayfalar (Blog Yazısı & Yasal Metinler) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero .post-date { color: rgba(255,255,255,0.65); margin-top: 0.6rem; }

.article-body {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem clamp(1.4rem, 5vw, 3.5rem);
  margin: -2rem auto 4rem;
  position: relative;
  overflow: hidden;
}
/* Filigran: yazıların arkasında sayfa diline göre isim/unvan */
.article-body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='320'%3E%3Ctext x='210' y='160' fill='rgba(10,31,60,0.055)' font-size='26' font-family='Georgia' font-style='italic' text-anchor='middle' transform='rotate(-30 210 160)'%3EAvukat %C4%B0layda Eski%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}
html[lang="en"] .article-body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='340'%3E%3Ctext x='250' y='170' fill='rgba(10,31,60,0.055)' font-size='24' font-family='Georgia' font-style='italic' text-anchor='middle' transform='rotate(-30 250 170)'%3EIlayda Eski %E2%80%94 Attorney at Law%3C/text%3E%3C/svg%3E");
}
html[lang="de"] .article-body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='340'%3E%3Ctext x='250' y='170' fill='rgba(10,31,60,0.055)' font-size='24' font-family='Georgia' font-style='italic' text-anchor='middle' transform='rotate(-30 250 170)'%3EIlayda Eski %E2%80%94 Rechtsanw%C3%A4ltin%3C/text%3E%3C/svg%3E");
}
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.article-body h3 { font-size: 1.15rem; margin: 1.6rem 0 0.6rem; }
.article-body p, .article-body li { color: var(--ink); font-size: 0.97rem; margin-bottom: 0.9rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body .article-note {
  background: var(--navy-100);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.87rem;
  color: var(--navy-700);
  margin-top: 2rem;
}
.article-back { display: inline-block; margin-bottom: 1.5rem; color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .topbar-inner { flex-direction: column; gap: 2px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding: 3.5rem 0 4rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
}

/* Çok dar ekranlar: Galaxy Z Fold kapak ekranı ve benzeri (~350px) */
@media (max-width: 420px) {
  html { font-size: 15px; }
  .container { width: 94%; }
  .logo-text { font-size: 1.05rem; }
  .logo-text small { display: none; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark svg { width: 23px; height: 23px; }
  .topbar { font-size: 0.74rem; }
  .topbar-links { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .hero { padding: 2.6rem 0 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 1.8rem 1.2rem; }
  .contact-form { padding: 1.8rem 1.2rem; }
  .article-body { padding: 2rem 1.1rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .about-frame { padding: 2.4rem 1.4rem; }
}
