/* ═══════════════════════════════════════════════════════
   AVUKAT WEB SİTESİ — v3
   Tamamen yeniden tasarlandı
═══════════════════════════════════════════════════════ */

:root {
  --gold:       #B8960C;
  --gold-light: #D4AF37;
  --gold-dark:  #8B6914;
  --gold-bg:    rgba(184,150,12,0.08);
  --bg:         #F8F6F1;
  --bg2:        #F0EDE4;
  --bg3:        #E8E4D8;
  --surface:    #FFFFFF;
  --text:       #1C1C1A;
  --text2:      #4A4844;
  --text3:      #8A8680;
  --border:     rgba(0,0,0,0.07);
  --shadow:     0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:      70px;
}

[data-theme="dark"] {
  --bg:      #111109;
  --bg2:     #1A1A14;
  --bg3:     #222218;
  --surface: #1C1C16;
  --text:    #F2EFE6;
  --text2:   #C0BDB0;
  --text3:   #807D72;
  --border:  rgba(255,255,255,0.07);
  --shadow:  0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Butonlar ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--gold-light);
  color: #111;
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.brand-icon { font-size: 1.25rem; }
.brand-text strong { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-light);
  transition: width var(--transition);
}
.nav-links a:hover        { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  padding: 0.45rem 1.1rem !important;
  background: var(--gold-light) !important;
  color: #111 !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--gold-dark) !important; color: #fff !important; }
.btn-nav::after { display: none !important; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--gold-light); color: #111; border-color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO — Yeni Düzen ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,12,0.12);
}
.hero-bg-lines::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,12,0.07);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  width: 48px; height: 2px;
  background: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* Hero Görsel */
.hero-visual {
  position: relative;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-placeholder-box {
  width: 100%; height: 100%;
  min-height: 460px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.hero-card {
  position: absolute;
  bottom: 2rem; left: -2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}
.hero-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-card-title { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.hero-card-sub   { font-size: 0.72rem; color: var(--text3); margin-top: 0.1rem; }

.hero-accent {
  position: absolute;
  top: 2rem; right: -1rem;
  width: 80px; height: 80px;
  border: 2px solid rgba(184,150,12,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* ── Section Base ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text2);
  max-width: 540px;
  margin-inline: auto;
}

/* ── Hakkımda ── */
.hakkimda-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 5rem;
  align-items: center;
}
.hakkimda-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hakkimda-img img { width: 100%; height: 100%; object-fit: cover; }
.hakkimda-img-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.hakkimda-content .section-label { text-align: left; }
.hakkimda-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hakkimda-text {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ── Hizmetler ── */
.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.hizmet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hizmet-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.hizmet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,12,0.2);
}
.hizmet-card:hover::after { transform: scaleX(1); }

.hizmet-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hizmet-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.hizmet-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.hizmet-card:hover .card-more { gap: 0.7rem; }

.section-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.section-cta p { font-size: 1rem; color: var(--text2); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-lg);
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg2); border: none;
  cursor: pointer; color: var(--text2);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gold-light); color: #111; }
.modal-num {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.modal-desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}
.modal-cta { margin-top: 1.75rem; }

/* ── Özellikler ── */
.ozellikler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.ozellik-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.ozellik-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,12,0.2);
}
.ozellik-icon-default {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.ozellik-img {
  width: 52px; height: 52px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.ozellik-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.ozellik-item p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}
.ozellik-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.ozellik-item:hover .ozellik-more { gap: 0.7rem; }

/* ── Referanslar ── */
.referanslar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.referans-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.referans-quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.referans-stars { color: var(--gold-light); font-size: 0.8rem; margin-bottom: 0.875rem; }
.referans-yorum {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.referans-author { display: flex; align-items: center; gap: 0.75rem; }
.referans-avatar {
  width: 38px; height: 38px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: var(--gold-dark);
  border: 1px solid rgba(184,150,12,0.2);
}
.referans-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }

/* ── İletişim ── */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.iletisim-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.info-card:hover { border-color: rgba(184,150,12,0.3); }
.info-icon {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.info-label { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.info-value { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-top: 0.2rem; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: var(--surface);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.9rem; }

.alert-success {
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.25);
  color: #15803d;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* ── Footer ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.footer-brand .brand-icon { font-size: 1.2rem; }
.footer-copy { font-size: 0.78rem; text-align: center; }
.footer-social {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold-light);
  color: #111;
  border-color: var(--gold-light);
}

/* ── Animasyon ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual      { order: -1; max-width: 400px; margin-inline: auto; }
  .hero-card        { left: 0; }
  .hakkimda-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .iletisim-grid    { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; text-align: center; }
  .footer-social    { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger      { display: flex; }
  .form-row       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section       { padding: 4rem 0; }
  .hero-stats    { gap: 1.5rem; }
  .hero-title    { font-size: 2.4rem; }
}

/* ══ Hero dekoratif panel (görsel yokken) ══ */
.hero-deco-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,150,12,0.15);
}
.deco-ring-1 { width: 90%; aspect-ratio: 1; }
.deco-ring-2 { width: 65%; aspect-ratio: 1; border-color: rgba(184,150,12,0.25); }
.deco-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.deco-emblem {
  font-size: 4rem;
  line-height: 1;
}
.deco-line {
  width: 40px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}
.deco-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}
.deco-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text2);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.deco-card i { color: var(--gold-light); font-size: 1rem; }
.deco-card-1 { bottom: 25%; left: -1rem; }
.deco-card-2 { top: 25%; right: -1rem; }

/* ══ Hakkımda dekoratif panel (görsel yokken) ══ */
.hakkimda-deco {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.hakkimda-deco-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hd-icon {
  font-size: 5rem;
  opacity: 0.3;
}
.hd-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hd-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hd-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hd-lbl {
  font-size: 0.72rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hd-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══ Görsel olan/olmayan hero ══ */
.hero-with-img .hero-inner  { grid-template-columns: 1fr 420px; }
.hero-no-img  .hero-inner   { grid-template-columns: 1fr 380px; }

.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-visual-deco {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══ Hakkımda görsel tam oturma ══ */
.hakkimda-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
}
.hakkimda-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ══ Modal görsel ══ */
.modal-gorsel-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.modal-gorsel-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gizli-modal { display: none !important; }

/* ══ Hero ikon dekoratif alan ══ */
.deco-emblem-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid rgba(184,150,12,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-fa-icon {
  font-size: 3.5rem;
  color: var(--gold-light);
}

/* ══ Brand adı siyah ══ */
.brand-text strong {
  color: var(--text) !important;
}

/* ══ Harita iframe güvenli embed ══ */
.harita-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.75rem;
  border: 1px solid var(--border);
}
.harita-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ══ Blog Grid ══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,12,0.2);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-deco {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
}
.blog-card-body   { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date   { font-size: .75rem; color: var(--text3); margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.blog-card-title  { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text); margin-bottom: .75rem; line-height: 1.35; }
.blog-card-ozet   { font-size: .875rem; color: var(--text2); line-height: 1.75; flex: 1; margin-bottom: 1rem; }
.blog-card-more   { font-size: .8rem; font-weight: 600; color: var(--gold-light); display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; }

/* ══ Blog Detay ══ */
.blog-detay-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.blog-detay-img {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.blog-detay-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-detay-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.blog-detay-baslik {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.blog-detay-metin {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.9;
}
.blog-detay-metin h2, .blog-detay-metin h3 { font-family: var(--font-serif); color: var(--text); margin: 2rem 0 1rem; }
.blog-detay-metin p  { margin-bottom: 1.25rem; }
.blog-detay-metin ul, .blog-detay-metin ol { margin: 1rem 0 1rem 1.5rem; }
.blog-detay-metin li { margin-bottom: .5rem; }

.blog-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.blog-sidebar-title { font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: 1.25rem; }
.blog-sidebar-item {
  display: flex;
  gap: .875rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}
.blog-sidebar-item:last-child { border-bottom: none; }
.blog-sidebar-item:hover .blog-sidebar-item-title { color: var(--gold-light); }
.blog-sidebar-item img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-sidebar-item-deco {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.blog-sidebar-item-title { font-size: .825rem; font-weight: 500; color: var(--text); line-height: 1.35; }
.blog-sidebar-item-date  { font-size: .72rem; color: var(--text3); margin-top: .2rem; }

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

/* ══ Referans fotoğraf ══ */
.referans-foto {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,150,12,0.3);
  flex-shrink: 0;
}
.referans-unvan {
  font-size: .75rem;
  color: var(--text3);
  margin-top: .15rem;
}
