/* =============================================
   Polatoğlu Hukuk Bürosu — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:          #0B1F3B;
  --navy-mid:      #1a3a5c;
  --gold:          #C5A059;
  --gold-dark:     #b08d4a;
  --gold-dim:      #b5c7eb;
  --bg:            #fbf9fb;
  --white:         #ffffff;
  --surface-low:   #f5f3f6;
  --surface-mid:   #efedf0;
  --surface-high:  #e9e7ea;
  --surface-top:   #e4e2e5;
  --text:          #1b1b1e;
  --text-muted:    #44474d;
  --text-light:    #75777e;
  --border:        #c5c6ce;
  --border-light:  #e4e2e5;
  --container:     1280px;
  --section-py:    100px;
  --font-serif:    'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --radius:        0;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── Container & Layout ──────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--surface-low); }
.section--navy { background: var(--navy); }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Typography ──────────────────────────── */
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  color: var(--navy);
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600; line-height: 1.25; letter-spacing: -.01em;
  color: var(--navy);
}
.headline {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600; line-height: 1.3;
  color: var(--navy);
}
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.body-lg { font-size: 18px; line-height: 1.7; color: var(--text-muted); }
.body-md { font-size: 16px; line-height: 1.6; color: var(--text-muted); }
.label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid transparent; transition: all .25s ease; white-space: nowrap;
}
.btn-primary  { background: var(--gold);  color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: rgba(197,160,89,.1); }
.btn-navy     { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost    { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Header / Nav ────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(197,160,89,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1536px; margin: 0 auto; padding: 0 48px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 42px; width: auto; }
.logo-text {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: #fff; letter-spacing: -.02em; white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .25s ease; padding-bottom: 2px;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: #fff; border-bottom: 1px solid var(--gold); }
.header-cta {
  padding: 10px 22px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); transition: background .25s ease;
}
.header-cta:hover { background: var(--gold-dark); }

/* Mobile toggle */
.menu-btn {
  display: none; background: none; border: none;
  color: var(--gold); padding: 6px; line-height: 0;
}
.menu-btn svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy); padding: 28px 32px; flex-direction: column;
}
.mobile-drawer.open { display: flex; }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px;
}
.drawer-close {
  background: none; border: none; color: var(--gold);
  font-size: 32px; line-height: 1; padding: 0;
}
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: rgba(255,255,255,.8); padding: 16px 0;
  border-bottom: 1px solid rgba(197,160,89,.15); transition: color .25s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .cta-mobile {
  margin-top: 32px; color: var(--gold); border: none; font-size: 16px;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative; min-height: 620px; display: flex;
  align-items: center; background: var(--navy); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(197,160,89,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 15%, rgba(181,199,235,.05) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1; width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 80px 32px;
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 700; line-height: 1.15;
  letter-spacing: -.025em; color: #fff;
  font-size: clamp(34px, 5vw, 56px); max-width: 700px; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 18px; line-height: 1.7; color: var(--gold-dim); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-phone {
  display: flex; align-items: center; gap: 10px; margin-top: 40px;
  font-size: 14px; color: rgba(255,255,255,.5); padding-top: 40px;
  border-top: 1px solid rgba(197,160,89,.2);
}
.hero-phone a { font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: .02em; }
.hero-phone a:hover { color: #fff; }

/* ── About / About Grid ──────────────────── */
.about-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 64px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  filter: grayscale(15%);
}
.about-img-wrap::after {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid var(--border); pointer-events: none;
}
.about-content .eyebrow { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.about-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); transition: gap .2s;
}
.about-link:hover { gap: 12px; }

/* ── Stats ───────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-light);
}
.stat-item {
  background: var(--white); padding: 48px 32px; text-align: center;
}
.stat-num {
  font-family: var(--font-serif); font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-muted); line-height: 1.4; }

/* ── Practice Area Cards ─────────────────── */
.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.practice-card {
  background: var(--white); padding: 32px;
  border: 1px solid var(--border); transition: border-color .25s ease;
}
.practice-card:hover { border-color: var(--gold); }
.practice-card svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 20px; }
.practice-card h3 { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.practice-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.practice-card ul {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.practice-card li {
  font-size: 14px; color: var(--text-muted); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.practice-card li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.practice-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); transition: gap .2s;
}
.practice-card-link:hover { gap: 10px; }

/* ── Team ────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px;
}
.team-card { }
.team-photo {
  aspect-ratio: 3/4; background: var(--surface-high); margin-bottom: 20px; overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: filter .5s ease;
}
.team-card:hover .team-photo img { filter: grayscale(0%); }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  font-family: var(--font-serif); font-size: 48px; color: var(--gold); font-weight: 700;
}
.team-role { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.team-name { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.team-bio { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── Blog / Hukuk Rehberi ────────────────── */
.blog-layout { display: grid; grid-template-columns: 8fr 4fr; gap: 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-card { cursor: pointer; }
.blog-thumb {
  aspect-ratio: 4/3; background: var(--surface-mid); margin-bottom: 16px; overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-title {
  font-family: var(--font-serif); font-size: 18px; color: var(--navy);
  line-height: 1.35; margin-bottom: 8px; transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--navy-mid); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { font-size: 13px; color: var(--text-light); display: flex; gap: 8px; align-items: center; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: var(--surface-low); padding: 24px; border: 1px solid var(--surface-top); }
.widget h3 { font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 16px; }
.search-wrap { display: flex; align-items: center; border-bottom: 1px solid var(--border); }
.search-wrap input {
  flex: 1; border: none; background: transparent; padding: 8px 0;
  font-size: 15px; outline: none; font-family: var(--font-sans);
}
.search-wrap button { background: none; border: none; color: var(--text-light); padding: 4px; }
.widget-posts { display: flex; flex-direction: column; gap: 0; }
.widget-post { padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.widget-post:last-child { border-bottom: none; }
.widget-post-cat { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.widget-post h4 { font-size: 14px; color: var(--text); line-height: 1.4; }
.widget-post:hover h4 { color: var(--navy); }
.widget-cta { background: var(--navy); color: #fff; padding: 32px 24px; text-align: center; }
.widget-cta h3 { color: #fff; margin-bottom: 10px; }
.widget-cta p { font-size: 14px; color: var(--gold-dim); margin-bottom: 20px; line-height: 1.5; }
.widget-cta input {
  width: 100%; background: transparent; border: 1px solid rgba(197,160,89,.4); color: #fff;
  padding: 10px 14px; font-size: 14px; margin-bottom: 12px; outline: none; font-family: var(--font-sans);
}
.widget-cta input::placeholder { color: rgba(255,255,255,.4); }
.widget-cta input:focus { border-color: var(--gold); }

/* Filter Bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.filter-btn {
  padding: 6px 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border: none; background: transparent;
  color: var(--text-muted); transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--surface-top); color: var(--navy); }

/* ── Contact ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 10px 0; font-size: 16px; color: var(--text); outline: none;
  transition: border-color .25s; font-family: var(--font-sans); -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: none; height: 110px; }
.contact-info-box { background: var(--surface-low); padding: 40px; border: 1px solid var(--surface-top); }
.contact-info-box h3 { margin-bottom: 28px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.info-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-icon svg { width: 20px; height: 20px; }
.info-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.info-val { font-size: 15px; color: var(--text); line-height: 1.5; }
.info-val a { color: var(--navy); }
.info-val a:hover { color: var(--gold); }
.quick-links { display: flex; gap: 12px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border-light); flex-wrap: wrap; }
.quick-links .btn { flex: 1; justify-content: center; }

/* ── Page Header ─────────────────────────── */
.page-header { padding: 72px 32px; text-align: center; border-bottom: 1px solid var(--border-light); }
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 580px; margin: 0 auto; font-size: 18px; color: var(--text-muted); line-height: 1.6; }

/* ── Breadcrumb ──────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 14px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ── Feature / Mission-Vision ────────────── */
.feature-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card { background: var(--white); padding: 44px; border: 1px solid var(--surface-top); }
.feature-card svg { width: 36px; height: 36px; color: var(--gold); margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { padding: 32px; }
.why-icon {
  width: 60px; height: 60px; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: border-color .25s;
}
.why-item:hover .why-icon { border-color: var(--gold); }
.why-icon svg { width: 26px; height: 26px; color: var(--navy); }
.why-item h4 { font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── Practice Area Detail Page ───────────── */
.practice-detail-layout { display: grid; grid-template-columns: 8fr 4fr; gap: 56px; align-items: start; }
.prose h2 { font-family: var(--font-serif); font-size: 26px; color: var(--navy); margin: 36px 0 14px; }
.prose h3 { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin: 28px 0 10px; }
.prose p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 12px 0 20px 0; }
.prose ul li {
  font-size: 15px; color: var(--text-muted); padding: 6px 0 6px 18px;
  position: relative; line-height: 1.6;
}
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.faq-item { border-top: 1px solid var(--border-light); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-q { font-family: var(--font-serif); font-size: 17px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA Banner ──────────────────────────── */
.cta-banner { background: var(--navy); padding: 80px 32px; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: var(--gold-dim); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Footer ──────────────────────────────── */
.site-footer { background: var(--white); border-top: 1px solid var(--border-light); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 72px 48px; max-width: 1536px; margin: 0 auto; }
.footer-brand { font-family: var(--font-serif); font-size: 20px; color: var(--navy); display: block; margin-bottom: 12px; }
.footer-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-light); transition: color .2s, transform .2s; display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 20px 48px; display: flex; justify-content: space-between; align-items: center; max-width: 1536px; margin: 0 auto; font-size: 13px; color: var(--text-light); }
.footer-bottom a { color: var(--text-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Map ─────────────────────────────────── */
.map-wrap { height: 420px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(15%); }

/* ── WhatsApp Float ──────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 28px; }
  .main-nav { gap: 20px; }
  .footer-inner { padding: 56px 28px; }
  .footer-bottom { padding: 20px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .practice-detail-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-2col { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-btn { display: flex; }
  .practice-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .stat-num { font-size: 40px; }
  .quick-links { flex-direction: column; }
  .page-header { padding: 52px 20px; }
  .header-inner { padding: 0 20px; }
  .footer-inner { padding: 48px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px; text-align: center; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Hukuk Rehberi — Makale İçeriği (article-content) ───────── */
.article-content { font-size: 16px; color: var(--text); line-height: 1.9; }
.article-content > *:first-child { margin-top: 0; }
.article-content p { margin-bottom: 20px; }
.article-content h2 {
  font-family: var(--font-serif); font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy); font-weight: 600; line-height: 1.35;
  margin: 40px 0 18px;
}
.article-content h3 {
  font-family: var(--font-serif); font-size: 19px;
  color: var(--navy); font-weight: 600; line-height: 1.4;
  margin: 32px 0 14px;
}
.article-content h4, .article-content h5 {
  font-size: 16px; font-weight: 600; color: var(--navy);
  margin: 24px 0 12px;
}
.article-content ul, .article-content ol { margin: 0 0 20px 22px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 10px; }
.article-content strong, .article-content b { color: var(--navy); font-weight: 600; }
.article-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.article-content a:hover { color: var(--gold); }
.article-content hr { border: none; border-top: 1px solid var(--border-light); margin: 32px 0; }
.article-content blockquote {
  border-left: 3px solid var(--gold); padding-left: 18px; margin: 24px 0;
  color: var(--text-muted); font-style: italic;
}
.article-content .lead { font-size: 18px; color: var(--text-muted); }

/* Tablolar */
.article-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px;
}
.article-content th, .article-content td {
  border: 1px solid var(--border-light); padding: 10px 14px; text-align: left;
}
.article-content th { background: var(--surface-low); color: var(--navy); font-weight: 600; }
.article-content tr:nth-child(even) td { background: var(--surface-low); }

/* Bilgi / uyarı kutuları — makalelerdeki çeşitli vurgu sınıfları tek görsel dile bağlanır */
.article-content .important-note,
.article-content .important-box,
.article-content .warning-box,
.article-content .warning-note,
.article-content .info-box,
.article-content .info-note,
.article-content .legal-note,
.article-content .legal-warning,
.article-content .highlight-box,
.article-content .law-card,
.article-content .specialist-box,
.article-content .lawyer-callout,
.article-content .cta-avukat,
.article-content .cta-soft,
.article-content .article-summary,
.article-content .avukat-notu,
.article-content .disclaimer,
.article-content .faq,
.article-content .alert {
  background: var(--surface-low);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.article-content .warning-box, .article-content .warning-note, .article-content .legal-warning,
.article-content .alert-warning {
  border-left-color: #b8664a;
}
.article-content .footer-warning, .article-content .meta-note, .article-content .meta {
  font-size: 13px; color: var(--text-light);
}

/* Satır içi vurgular */
.article-content .highlight,
.article-content .keyword,
.article-content .keyword-em,
.article-content .keyword-emphasis,
.article-content .keyword-highlight,
.article-content .keyword-badge,
.article-content .strong-text,
.article-content .lawyer-mention,
.article-content .lawyer-highlight,
.article-content .lawyer-note {
  color: var(--navy); font-weight: 600;
}
.article-content .keyword-badge, .article-content .badge {
  display: inline-block; background: var(--gold-pale, rgba(197,160,89,.15));
  color: var(--navy); padding: 2px 10px; font-size: 13px; font-weight: 600;
  border-radius: 2px;
}
.article-content footer { display: none; }

/* Uzmanlık sayfalarındaki ek yardımcı sınıflar (bootstrap benzeri) */
.article-content .list-group { margin: 20px 0; }
.article-content .list-group-item {
  display: block; padding: 12px 16px; border-bottom: 1px solid var(--border-light);
  background: var(--surface-low);
}
.article-content .list-group-item:last-child { border-bottom: none; }
.article-content .h3, .article-content .h4, .article-content .h5, .article-content .h6 {
  font-family: var(--font-serif); color: var(--navy); font-weight: 600; display: block;
}
.article-content .h3 { font-size: 19px; margin: 32px 0 14px; }
.article-content .h4, .article-content .h5, .article-content .h6 { font-size: 16px; margin: 24px 0 12px; }
.article-content .lead { display: block; margin-bottom: 20px; }
.article-content .text-primary { color: var(--navy); }
.article-content .text-secondary, .article-content .text-dark { color: var(--text-muted); }
.article-content .font-weight-bold { font-weight: 700; }
.article-content .container { padding: 0; }

/* ── Sayfalama (Hukuk Rehberi listeleme) ─────────────────────── */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-size: 14px; border: 1px solid var(--border-light); color: var(--navy);
  transition: all .2s ease;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-dark); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 600; }
.pagination .disabled { opacity: .4; }
.pagination .ellipsis { border: none; color: var(--text-light); }
