@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Mulish:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary:    #1a2b4a;
  --primary-dk: #0f1e36;
  --accent:     #c9a96e;
  --accent-dk:  #a88540;
  --bg:         #ffffff;
  --surface:    #f7f7f5;
  --text:       #2d2d2d;
  --muted:      #6b7280;
  --border:     #e5e5e0;
  --radius:     4px;
  --shadow:     0 2px 20px rgba(0,0,0,.08);
  --shadow-md:  0 4px 30px rgba(0,0,0,.14);
  --transition: 0.3s ease;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-dk); }
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.25); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .3px;
}
.logo-legal {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-left: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-self: center;
}

/* Navbar'da öne çıkan Arabuluculuk sekmesi */
.nav-links .nav-mediation { color: var(--accent); font-weight: 600; }
.nav-links .nav-mediation:hover { color: var(--accent-dk); }

/* Ana sayfa arabuluculuk şeridi */
.mediation-banner { background: var(--primary); padding: 44px 0; }
.mediation-banner .med-banner-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; }
.mediation-banner .section-label { color: var(--accent); }
.mediation-banner h2 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 30px; margin: 8px 0 10px; }
.mediation-banner p { color: rgba(255,255,255,.82); max-width: 640px; line-height: 1.6; }
.mediation-banner .btn { flex-shrink: 0; }

/* Tıklanabilir güncel gelişme öğeleri */
.timeline-item[data-href] { cursor: pointer; transition: transform .2s ease; }
.timeline-item[data-href]:hover { transform: translateX(4px); }
.timeline-item[data-href]:hover .tl-title { color: var(--accent-dk); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: none;
  border: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active {
  color: var(--accent);
  background: rgba(255,255,255,.06);
}
.nav-caret { font-size: 10px; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 8px 0;
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--surface);
  color: var(--accent);
  padding-left: 26px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { flex-shrink: 0; }

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.lang-toggle button.active {
  background: var(--accent);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO SLIDER ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 72px;
}
.slides { height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-1 .slide-bg { background: linear-gradient(145deg, #0d1b2e 0%, #1a2b4a 60%, #243b5e 100%), url('https://picsum.photos/seed/legal1/1920/1080') center/cover; }
.slide-2 .slide-bg { background: linear-gradient(145deg, #111827 0%, #1e3a5f 60%, #1a2b4a 100%), url('https://picsum.photos/seed/legal2/1920/1080') center/cover; }
.slide-3 .slide-bg { background: linear-gradient(145deg, #0c1a2e 0%, #16304f 60%, #1a2b4a 100%), url('https://picsum.photos/seed/legal3/1920/1080') center/cover; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,.85) 0%, rgba(10,20,40,.4) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.slide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,.4);
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.slide-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  font-weight: 300;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-arrows {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 5;
  pointer-events: none;
}
.arrow-btn {
  pointer-events: all;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.arrow-btn:hover { background: var(--accent); border-color: var(--accent); }

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  transition: all var(--transition);
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* ─── PRACTICE AREAS ─── */
.practice {
  padding: 90px 0;
  background: var(--surface);
}
.practice-head {
  text-align: center;
  margin-bottom: 56px;
}
.practice-head .section-sub { margin: 12px auto 0; }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.practice-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.practice-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.practice-card:hover::after { transform: scaleX(1); }
.practice-grid .practice-card:last-child { grid-column: 1 / -1; }

.practice-img {
  margin: -36px -28px 32px;
  height: 172px;
  position: relative;
  overflow: hidden;
}
.practice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.practice-card:hover .practice-img img { transform: scale(1.06); }
.practice-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,54,0) 45%, rgba(15,30,54,.55));
}
.practice-img .practice-icon {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin-bottom: 0;
  background: var(--bg);
  box-shadow: var(--shadow);
  z-index: 2;
}

.practice-icon {
  width: 56px; height: 56px;
  background: rgba(201,169,110,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.practice-icon svg { width: 26px; height: 26px; }
.practice-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.practice-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ─── ABOUT TEASER ─── */
.about-teaser {
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.about-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--accent);
  border-radius: 8px;
  z-index: -1;
}
.about-img .exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-badge .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.exp-badge .lbl { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }

.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.about-feat::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── STATS ─── */
.stats {
  background: var(--primary);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix { font-size: 24px; color: var(--accent); }
.stat-lbl {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
  font-weight: 400;
}

/* ─── BLOG ─── */
.blog-section {
  padding: 90px 0;
  background: var(--surface);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

/* ─── CONTACT FORM ─── */
.contact-section {
  padding: 90px 0;
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info p { color: var(--muted); margin-bottom: 36px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-icon {
  width: 44px; height: 44px;
  background: rgba(201,169,110,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item strong { display: block; font-size: 14px; color: var(--primary); margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--muted); }

.form-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--muted); cursor: pointer; }
.form-check a { color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,.75);
}
.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── INNER PAGE HERO BANNER ─── */
.page-hero {
  background: var(--primary);
  padding: 100px 0 60px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(201,169,110,.08);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 16px; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ─── ABOUT PAGE ─── */
.values-section { padding: 90px 0; background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-5px); }
.value-icon {
  width: 64px; height: 64px;
  background: rgba(26,43,74,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── PRACTICE AREA DETAIL ─── */
.practice-detail { padding: 72px 0; }
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.practice-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--primary);
  margin: 36px 0 16px;
}
.practice-content h2:first-child { margin-top: 0; }
.practice-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.service-list { margin: 20px 0 32px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar-card {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent);
}
.sidebar-card p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 20px; line-height: 1.7; }
.sidebar-links { background: var(--surface); border-radius: 8px; padding: 24px; }
.sidebar-links h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.sidebar-links ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.sidebar-links ul li a:hover { color: var(--accent); }
.sidebar-links ul li a span { color: var(--accent); font-size: 16px; }

/* ─── BLOG LIST PAGE ─── */
.blog-page { padding: 72px 0; }
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── BLOG DETAIL PAGE ─── */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 72px 0;
  align-items: start;
}
.article-header { margin-bottom: 32px; }
.article-cat {
  display: inline-block;
  background: rgba(201,169,110,.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.article-meta { display: flex; gap: 20px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.article-body p { color: var(--muted); margin-bottom: 20px; line-height: 1.9; font-size: 16px; }
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--primary);
  margin: 36px 0 14px;
}
.article-body ul { margin: 16px 0 20px 20px; }
.article-body ul li { color: var(--muted); margin-bottom: 8px; line-height: 1.7; }

/* ─── CONTACT PAGE ─── */
.map-section { padding: 0 0 72px; }
.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  border: 2px dashed var(--border);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}

/* ─── GÜNCEL HUKUKİ GELİŞMELER (TIMELINE) ─── */
.legal-updates {
  padding: 90px 0;
  background: var(--bg);
}
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 34px 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--surface);
  transition: transform var(--transition), border-color var(--transition);
}
.timeline-item:hover::before {
  transform: scale(1.15);
  border-color: var(--primary);
}
.tl-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.tl-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dk);
  letter-spacing: .04em;
}
.tl-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 20px;
}
.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--primary);
  margin: 0 0 6px;
}
.tl-text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
.tl-note {
  max-width: 820px;
  margin: 36px auto 0;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }

/* ─── AI CHATBOT WIDGET ─── */
.ehb-chat { position: fixed; right: 20px; bottom: 20px; z-index: 1000;
  font-family: 'Mulish', sans-serif; }

.ehb-chat__fab { width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--accent); color: #fff; box-shadow: var(--shadow-md);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition); }
.ehb-chat__fab:hover { background: var(--accent-dk); transform: translateY(-2px); }
.ehb-chat__fab-close { display: none; }
.ehb-chat--open .ehb-chat__fab-open { display: none; }
.ehb-chat--open .ehb-chat__fab-close { display: block; }

.ehb-chat__panel { position: absolute; right: 0; bottom: 74px; width: 360px;
  max-width: calc(100vw - 40px); height: 520px; max-height: calc(100vh - 110px);
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  overflow: hidden; }
/* hidden attribute'u display:flex'i ezmesin diye — panelin kapanmasını sağlar */
.ehb-chat__panel[hidden] { display: none; }

.ehb-chat__header { background: var(--primary); color: #fff; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; }
.ehb-chat__header strong { display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; }
.ehb-chat__header span { font-size: 12px; color: rgba(255,255,255,.7); }
.ehb-chat__x { background: none; border: none; color: rgba(255,255,255,.8);
  cursor: pointer; padding: 4px; display: flex; transition: color var(--transition); }
.ehb-chat__x:hover { color: #fff; }

.ehb-chat__body { flex: 1; overflow-y: auto; padding: 16px; background: var(--surface);
  display: flex; flex-direction: column; gap: 10px; }

.ehb-msg { max-width: 85%; padding: 10px 13px; border-radius: 12px; font-size: 14px;
  line-height: 1.5; word-wrap: break-word; }
.ehb-msg--bot { align-self: flex-start; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  border-bottom-left-radius: 4px; }
.ehb-msg--user { align-self: flex-end; background: var(--primary); color: #fff;
  border-bottom-right-radius: 4px; }

.ehb-msg--typing { display: flex; gap: 4px; align-items: center; }
.ehb-msg--typing span { width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); opacity: .5; animation: ehbBlink 1.2s infinite both; }
.ehb-msg--typing span:nth-child(2) { animation-delay: .2s; }
.ehb-msg--typing span:nth-child(3) { animation-delay: .4s; }
@keyframes ehbBlink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }

.ehb-chat__form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--border);
  background: var(--bg); }
.ehb-chat__input { flex: 1; border: 1px solid var(--border); border-radius: 20px;
  padding: 9px 14px; font-size: 14px; font-family: inherit; color: var(--text);
  outline: none; transition: border-color var(--transition); }
.ehb-chat__input:focus { border-color: var(--accent); }
.ehb-chat__input:disabled { background: var(--surface); cursor: not-allowed; }
.ehb-chat__send { border: none; background: var(--accent); color: #fff;
  border-radius: 20px; padding: 0 16px; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background var(--transition); }
.ehb-chat__send:hover:not(:disabled) { background: var(--accent-dk); }
.ehb-chat__send:disabled { opacity: .5; cursor: not-allowed; }

.ehb-chat__note { padding: 8px 14px 12px; font-size: 11px; color: var(--muted);
  background: var(--bg); line-height: 1.4; }
.ehb-chat__note--limit { color: var(--accent-dk); font-weight: 500; }
