/* Fonts header.php içinde <link> ile tek noktadan yüklenir (tüm site: Inter) */

:root {
  --primary-color: #16243d;   /* Lacivert */
  --primary-light: #223553;
  --primary-deep: #0d1626;    /* Koyu lacivert */
  --secondary-color: #b08d44; /* Antika altın */
  --secondary-hover: #957534;
  --accent-color: #3b82f6;
  --text-color: #2c2a26;      /* Sıcak koyu */
  --text-light: #6d655a;      /* Sıcak gri */
  --bg-color: #f6f2ea;        /* Sıcak krem zemin */
  --surface-alt: #efe9dd;     /* Krem ikincil yüzey */
  --line: #e4dccd;            /* Sıcak kenarlık */
  --white: #ffffff;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --shadow-sm: 0 1px 2px 0 rgb(20 16 8 / 0.04);
  --shadow-md: 0 6px 18px -8px rgb(20 16 8 / 0.18);
  --shadow-lg: 0 14px 36px -16px rgb(20 16 8 / 0.22);
  --shadow-hover: 0 22px 48px -20px rgb(20 16 8 / 0.28);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-color); background-color: var(--bg-color); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; color: var(--primary-color); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Top utility bar */
.topbar { background: var(--primary-deep); color: #c9bfae; font-size: 0.82rem; border-bottom: 1px solid rgba(176, 141, 68, 0.25); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; }
.topbar-left span { color: #b7ad9b; }
.topbar i { color: var(--secondary-color); margin-right: 0.25rem; }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right a { color: #d7cebd; transition: var(--transition); }
.topbar-right a:hover { color: var(--secondary-color); }

/* Header */
header { background-color: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 0; }
.logo-link { display: inline-flex; align-items: center; }
.logo img { display: block; height: 75px; width: auto; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: var(--white);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}
nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
nav a { color: var(--text-color); font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.5rem 0; }
/* Standart menü linkleri için yalnızca alt çizgi efekti */
nav a:not(.nav-cta)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--secondary-color); transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
nav a:not(.nav-cta):hover::after, nav a:not(.nav-cta).active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--primary-color); }
nav a:not(.nav-cta).active { font-weight: 700; }

/* İletişim CTA butonu */
.nav-cta-item { margin-left: 0.4rem; }
nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.62rem 1.3rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
nav a.nav-cta:hover,
nav a.nav-cta.active {
  color: var(--white);
  background: var(--secondary-hover);
}
nav a.nav-cta i { font-size: 0.85rem; }

/* Premium Hero */
.hero { background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.9) 100%), url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>'); padding: 8rem 0 7rem; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%); top: -150px; right: -100px; opacity: 0.15; border-radius: 50%; }
.hero h2 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--white); font-weight: 700; line-height: 1.2; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 2.5rem; color: #c9bfae; font-weight: 300; font-family: 'Inter', sans-serif; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); padding: 5rem 0; color: white; text-align: center; border-bottom: 5px solid var(--secondary-color); }
.page-header-icon { display: inline-flex; width: 64px; height: 64px; border-radius: 16px; align-items: center; justify-content: center; background: rgba(176, 141, 68, 0.16); border: 1px solid rgba(176, 141, 68, 0.3); color: var(--secondary-color); font-size: 1.6rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: 3rem; margin-bottom: 0.5rem; }
.page-header p { color: #c9bfae; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center; background: var(--secondary-color); color: var(--white); padding: 0.9rem 1.9rem; font-weight: 600; border-radius: var(--border-radius); border: 1px solid var(--secondary-color); cursor: pointer; transition: var(--transition); letter-spacing: 0.2px; font-size: 0.95rem; }
.btn:hover { background: var(--secondary-hover); border-color: var(--secondary-hover); color: var(--white); }
.btn i { font-size: 0.9em; }
.btn-primary { background: var(--primary-color); border-color: var(--primary-color); }
.btn-primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); }
.btn-outline { background: transparent; border: 1px solid var(--secondary-color); color: var(--primary-color); }
.btn-outline:hover { background: var(--secondary-color); color: var(--white); }

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-bg { background-color: var(--white); border-top: 1px solid #efe9dd; border-bottom: 1px solid #efe9dd; }
.section-title { text-align: center; font-size: 2.3rem; margin-bottom: 3rem; position: relative; color: var(--primary-color); padding-bottom: 1rem; }
.section-title::after { content: ''; position: absolute; width: 48px; height: 3px; background-color: var(--secondary-color); bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; }

/* Cards */
.card { background: var(--white); padding: 2.25rem; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--line); position: relative; }
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(176, 141, 68, 0.35); }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary-color); }
.card p { color: var(--text-light); font-size: 1rem; line-height: 1.6; }

/* Detail Block */
.detail-block { background: var(--white); padding: 3rem; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl); }
.detail-block h3 { color: var(--secondary-color); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1.2rem; }
.detail-block ul { list-style: none; padding: 0; margin-bottom: 2rem; }
.detail-block ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; color: var(--text-color); }
.detail-block ul li::before { content: '▪'; position: absolute; left: 0; color: var(--secondary-color); font-size: 1.2rem; line-height: 1; }

/* Contact Flex */
.contact-grid { display: flex; flex-wrap: wrap; gap: 3rem; }
.contact-info, .contact-form { flex: 1; min-width: 320px; }
.contact-form { background: var(--white); padding: 3rem; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); }

/* Form Elements */
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; color: var(--primary-color); }
.input-group input, .input-group textarea { width: 100%; padding: 1rem; border: 1px solid #c9bfae; border-radius: var(--border-radius); font-family: 'Inter', sans-serif; font-size: 1rem; transition: var(--transition); background-color: #f6f2ea; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--secondary-color); background-color: var(--white); box-shadow: 0 0 0 3px rgba(176, 141, 68, 0.1); }

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0b1220 0%, #111d32 65%, #152543 100%);
  color: #c9bfae;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.4rem;
}
.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.3rem;
  font-size: 1.22rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--secondary-color);
}
.footer-lead {
  color: #dbe6f9 !important;
}
.footer-links a {
  color: #a6b5ce;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}
.footer-col p {
  margin-bottom: 0.8rem;
  color: #a6b5ce;
  line-height: 1.7;
}
.footer-highlight {
  color: #fbc531;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #93a6c5;
  font-size: 0.84rem;
}
.footer-ico {
  color: var(--secondary-color);
  width: 18px;
  text-align: center;
  margin-right: 0.15rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-item .footer-ico {
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: #a6b5ce;
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--secondary-color);
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a i {
  font-size: 0.62rem;
  color: var(--secondary-color);
  transition: var(--transition);
}
.footer-links a:hover {
  padding-left: 4px;
}

/* Homepage Redesign */
.home-page .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--secondary-color);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.home-page .home-kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--secondary-color);
  display: inline-block;
}
.home-page .text-center.home-kicker {
  display: flex;
  justify-content: center;
}
.home-page .home-hero {
  background: linear-gradient(135deg, #0b1220 0%, #16263f 65%, #1d3557 100%);
  color: var(--white);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.home-page .home-hero::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -90px;
  background: radial-gradient(circle, rgba(176, 141, 68, 0.25), transparent 70%);
  border-radius: 50%;
}
.home-page .home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(5, 9, 18, 0.82), rgba(9, 16, 28, 0.82)), url('../uploads/branding/avukat-arabulucu-ahmet-ates-logo.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, min(70vw, 560px);
  background-position: center center, right -40px bottom -120px;
  opacity: 0.16;
  pointer-events: none;
}
.home-page .home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-page .home-hero h1 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.home-page .home-hero-content p {
  font-size: 1.07rem;
  color: #d2dceb;
  max-width: 760px;
}
.home-page .home-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-page .home-hero .btn-outline {
  color: #f6f2ea;
  border-color: rgba(248, 250, 252, 0.75);
  background: rgba(255, 255, 255, 0.04);
}
.home-page .home-hero .btn-outline:hover {
  color: #f6f2ea;
  border-color: rgba(248, 250, 252, 0.75);
  background: rgba(255, 255, 255, 0.04);
  transform: none;
  box-shadow: none;
}
.home-page .home-trust-items {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.home-page .home-trust-items span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: #e4dccd;
  font-size: 0.85rem;
}
.home-page .home-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.home-page .home-hero-panel h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.home-page .home-hero-panel ul {
  list-style: none;
  margin: 0 0 1.4rem;
}
.home-page .home-hero-panel li {
  margin-bottom: 0.9rem;
  color: #dbe5f5;
  position: relative;
  padding-left: 1.1rem;
}
.home-page .home-hero-panel li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.6rem;
}
.home-page .home-hero-panel a {
  color: #e7c987;
  font-weight: 600;
}
.home-page .home-metrics {
  margin-top: -1.8rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
}
.home-page .home-metrics-grid {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e4dccd;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-page .home-metrics-grid article {
  text-align: center;
  padding: 0.9rem;
}
.home-page .home-metrics-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1;
}
.home-page .home-metrics-grid p {
  margin-top: 0.45rem;
  color: var(--text-light);
  font-size: 0.9rem;
}
.home-page .home-about {
  padding-top: 4rem;
}
.home-page .home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}
.home-page .home-about-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid #e4dccd;
  background: linear-gradient(180deg, #ffffff 0%, #f6f2ea 100%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}
.home-page .home-about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 68% center;
}
.home-page .home-about-portrait figcaption {
  padding: 1.35rem 1.5rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.35;
  color: var(--primary-color);
  border-top: 3px solid var(--secondary-color);
  background: #fff;
}
.home-page .home-about-name-line {
  display: inline;
}
.home-page .home-about-name-line + .home-about-name-line::before {
  content: ' ';
}
.home-page .home-about-content {
  padding: 0.5rem 0;
}
.home-page .home-about h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.home-page .home-about p {
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}
.home-page .home-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.home-page .home-practice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--border-radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.home-page .home-practice-card:hover {
  border-top-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}
.home-page .home-practice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.home-page .home-practice-card p {
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.7;
}
.home-page .home-practice-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.home-page .home-practice-cta {
  background: linear-gradient(135deg, #0d1626 0%, #16243d 100%);
  border: none;
}
.home-page .home-practice-cta h3,
.home-page .home-practice-cta p {
  color: #e4dccd;
}
.home-page .home-practice-cta a {
  color: #e7c987;
  font-weight: 600;
}
.home-page .home-process {
  background: #f6f2ea;
}
.home-page .home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-page .home-process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  padding: 1.6rem 1.4rem;
  transition: var(--transition);
}
.home-page .home-process-grid article:hover {
  border-color: rgba(176, 141, 68, 0.4);
  box-shadow: var(--shadow-md);
}
.home-page .home-process-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.2);
  color: #8a6c2c;
  font-weight: 700;
}
.home-page .home-process-grid h3 {
  margin: 0.9rem 0 0.6rem;
  font-size: 1.05rem;
}
.home-page .home-process-grid p {
  color: var(--text-light);
  font-size: 0.93rem;
}
.home-page .home-publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.home-page .home-publication-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.home-page .home-publication-card:hover {
  box-shadow: var(--shadow-md);
}
.home-page .home-publication-card .pub-body { padding: 1.5rem 1.6rem; }
.home-page .home-publication-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}
.home-page .home-publication-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.home-page .home-publication-card .home-pub-date {
  color: #8a6c2c;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.home-page .home-publication-card a {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.home-page .home-publication-action {
  margin-top: 2.5rem;
}
.home-page .home-cta {
  padding: 1rem 0 5.5rem;
}
.home-page .home-cta-box {
  background: linear-gradient(130deg, #0d1626 0%, #16243d 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.home-page .home-cta h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}
.home-page .home-cta p {
  color: #c9bfae;
}

/* ============================================================
   Hero Slider
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 72vh, 660px);
  background: #080d18;
}
.hero-slides {
  position: relative;
  height: 100%;
  min-height: inherit;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
  transform: scale(1.04);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 7s ease;
}
.hero-slide-inner {
  color: var(--white);
  width: 90%;
  max-width: 680px;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}
.hero-slide h1,
.hero-slide .hero-slide-text {
  overflow-wrap: break-word;
}
.hero-slide .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-slide h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4.4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.hero-slide .hero-slide-text {
  font-size: 1.1rem;
  color: #d8e0ee;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-slide .home-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-slide .btn-outline {
  color: #f6f2ea;
  border-color: rgba(248, 250, 252, 0.7);
  background: rgba(255, 255, 255, 0.05);
}
.hero-slide .btn-outline:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.hero-slide.is-active .home-kicker { animation: heroFade 0.7s 0.15s both; }
.hero-slide.is-active h1 { animation: heroFade 0.7s 0.28s both; }
.hero-slide.is-active .hero-slide-text { animation: heroFade 0.7s 0.4s both; }
.hero-slide.is-active .home-hero-actions { animation: heroFade 0.7s 0.52s both; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 13, 24, 0.4);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-arrow:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.hero-arrow-prev { left: 22px; }
.hero-arrow-next { right: 22px; }
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
}
.hero-dot {
  width: 30px;
  height: 5px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-dot.is-active {
  background: var(--secondary-color);
  width: 44px;
}

/* ============================================================
   Metric icons + counters
   ============================================================ */
.home-page .home-metric-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.12);
  color: var(--secondary-color);
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

/* ============================================================
   Practice / process icons
   ============================================================ */
.practice-card-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(176, 141, 68, 0.18), rgba(176, 141, 68, 0.04));
  border: 1px solid rgba(176, 141, 68, 0.22);
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.home-page .home-practice-cta .practice-card-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #e7c987;
}
.home-page .home-practice-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: var(--transition);
}
.home-page .home-practice-card-link:hover .home-practice-more {
  gap: 0.75rem;
  color: var(--secondary-hover);
}
.home-page .home-process-grid article {
  position: relative;
  text-align: left;
}
.home-page .home-process-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.12);
  color: var(--secondary-color);
  font-size: 1.4rem;
}
.home-page .home-process-grid .home-process-step {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================================
   Floating social buttons (Instagram, Facebook, WhatsApp)
   ============================================================ */
.social-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.social-float-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}
.social-float-btn i { font-size: 1.35rem; line-height: 1; }
.social-float-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}
.social-float-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 8px 22px rgba(188, 24, 136, 0.4);
}
.social-float-instagram:hover {
  box-shadow: 0 12px 28px rgba(188, 24, 136, 0.5);
}
.social-float-facebook {
  background: #1877f2;
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.4);
}
.social-float-facebook:hover {
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.5);
}
.whatsapp-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.35rem;
  background: #25d366;
  color: #fff;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-float i { font-size: 1.55rem; line-height: 1; }
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   Güven Esasları (dark band)
   ============================================================ */
.home-values {
  background: var(--primary-deep);
  color: #e9e2d4;
  padding: 4.5rem 0;
  position: relative;
}
.home-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,22,38,0.92), rgba(13,22,38,0.96)), url('../uploads/hero/hero-gavel.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}
.home-values .container { position: relative; z-index: 1; }
.home-values-head { text-align: center; margin-bottom: 2.6rem; }
.home-values-head .home-kicker { color: var(--secondary-color); }
.home-values-head h2 { color: #fff; font-size: 2rem; }
.home-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-values-grid article {
  text-align: center;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(176, 141, 68, 0.25);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.03);
}
.home-values-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.15);
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.home-values-grid h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.6rem; }
.home-values-grid p { color: #c9bfae; font-size: 0.96rem; }

/* ============================================================
   SSS / FAQ akordeon
   ============================================================ */
.home-faq-head { text-align: center; margin-bottom: 2.5rem; }
.home-faq-head .home-kicker { color: var(--secondary-color); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: rgba(176, 141, 68, 0.45); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary-color);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '\f068'; }
.faq-body {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-body p { margin: 0; }
.home-page .home-hero-content,
.home-page .home-hero-panel,
.home-page .home-metrics,
.home-page .home-about,
.home-page .home-practice-grid,
.home-page .home-process-grid,
.home-page .home-publication-grid,
.home-page .home-cta-box {
  animation: homeFadeUp 0.7s ease both;
}
.home-page .home-hero-panel { animation-delay: 0.12s; }
.home-page .home-metrics { animation-delay: 0.18s; }
.home-page .home-about { animation-delay: 0.24s; }
.home-page .home-practice-grid { animation-delay: 0.28s; }
.home-page .home-process-grid { animation-delay: 0.32s; }
.home-page .home-publication-grid { animation-delay: 0.36s; }
.home-page .home-cta-box { animation-delay: 0.4s; }

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inner Pages Redesign */
.inner-page .page-header {
  position: relative;
  overflow: hidden;
}
.inner-page .page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.45)), url('../uploads/branding/avukat-arabulucu-ahmet-ates-logo.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 380px;
  background-position: center center, right -50px center;
  opacity: 0.12;
  pointer-events: none;
}
.inner-page .page-header .container {
  position: relative;
  z-index: 1;
}
.inner-container-narrow {
  max-width: 960px;
}
.inner-page .inner-surface {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e4dccd;
  box-shadow: var(--shadow-lg);
}
.inner-page .inner-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.inner-page .inner-title-sm {
  color: var(--primary-color);
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: 1.8rem;
}
.inner-page .inner-lead {
  margin-bottom: 1.5rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-color);
}
.inner-page .ozgecmis-content.detail-block {
  overflow: hidden;
  padding: 0 0 3rem;
}
.inner-page .ozgecmis-banner {
  margin: 0;
  overflow: hidden;
  border-bottom: 3px solid var(--secondary-color);
  background: #0d1626;
}
.inner-page .ozgecmis-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 32vw, 380px);
  object-fit: cover;
  object-position: center 42%;
}
.inner-page .ozgecmis-banner figcaption {
  padding: 0.6rem 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f6f2ea;
  border-top: 1px solid #e4dccd;
}
.inner-page .ozgecmis-intro {
  padding: 2.2rem 3rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e4dccd;
  padding-bottom: 2rem;
}
.inner-page .ozgecmis-intro .inner-title {
  margin-bottom: 0.6rem;
  font-size: 1.85rem;
}
.inner-page .ozgecmis-intro .inner-lead {
  margin-bottom: 1.4rem;
}
.inner-page .ozgecmis-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.inner-page .ozgecmis-highlights li {
  padding: 0.45rem 0.9rem;
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 600;
  background: #f6f2ea;
  border: 1px solid #e4dccd;
  border-radius: 999px;
}
.inner-page .ozgecmis-kicker {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.inner-page .ozgecmis-body {
  padding: 0 3rem;
}
.inner-page .ozgecmis-body p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
  color: var(--text-color);
}
.inner-page .ozgecmis-body p:last-child {
  margin-bottom: 0;
}
.inner-page .practice-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.inner-page .practice-detail-intro {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1.8rem;
}
.inner-page .practice-detail-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.inner-page .practice-detail-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: var(--text-color);
}
.inner-page .practice-detail-list li:last-child {
  margin-bottom: 0;
}
.inner-page .practice-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-color);
}
.inner-page .practice-detail-section {
  margin-bottom: 1.8rem;
}
.inner-page .practice-detail-section:last-child {
  margin-bottom: 0;
}
.inner-page .practice-detail-section h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 0 0 0.9rem;
}
.inner-page .practice-detail-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.inner-page .practice-detail-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(176, 141, 68, 0.28);
  background: linear-gradient(180deg, #f6f2ea 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
}
.inner-page .practice-detail-cta::before {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}
.inner-page .practice-detail-cta p {
  font-size: 1.05rem;
  color: var(--text-color);
  margin: 0 0 1.35rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 34rem;
  text-align: center;
}
.inner-page .practice-detail-back {
  display: flex;
  justify-content: center;
  width: 100%;
}
.inner-page .inner-muted {
  margin-bottom: 1rem;
  color: var(--text-color);
}
.inner-page .inner-note-box {
  margin-top: 2.4rem;
  padding: 1.4rem;
  border-left: 4px solid var(--secondary-color);
  background: var(--bg-color);
  border-radius: var(--border-radius);
}
.inner-page .inner-note-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.9rem;
}
.inner-page .inner-note-box ul {
  margin: 0;
}
.inner-page .inner-note-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.inner-page .inner-note-box p strong {
  color: var(--primary-color);
}
.inner-page .inner-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.inner-page .inner-practice-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--border-radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.inner-page .inner-practice-card:hover {
  border-top-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}
.inner-page .inner-practice-card-link {
  color: inherit;
  text-decoration: none;
}
.inner-page .inner-practice-card-link:hover .inner-link-arrow {
  color: var(--secondary-hover);
}
.inner-page .inner-practice-cta .inner-link-arrow {
  color: #e7c987;
}
.inner-page .inner-practice-cta:hover .inner-link-arrow {
  color: #f0d9a0;
}
.inner-page .inner-practice-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}
.inner-page .inner-practice-card p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.inner-page .inner-practice-card a,
.inner-page .inner-link-arrow {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
}
.inner-page .inner-practice-card a::after,
.inner-page .inner-link-arrow::after {
  content: ' ->';
}
.inner-page .inner-practice-cta {
  background: linear-gradient(135deg, #0d1626 0%, #16243d 100%);
  border-color: transparent;
}
.inner-page .inner-practice-cta h3,
.inner-page .inner-practice-cta p {
  color: #e4dccd;
}
.inner-page .inner-practice-cta a {
  color: #e7c987;
}
.inner-page .inner-publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.inner-page .inner-publication-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.inner-page .inner-publication-card:hover {
  box-shadow: var(--shadow-md);
}
.inner-page .inner-publication-card .pub-body { padding: 1.5rem 1.5rem; }

/* Yayın kapak görseli (kart + detay) */
.pub-media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-alt);
}
.pub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-publication-card:hover .pub-media img,
.inner-publication-card:hover .pub-media img {
  transform: scale(1.04);
}
.pub-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-color) 100%);
  color: rgba(176, 141, 68, 0.55);
  font-size: 2.6rem;
}
.pub-body { flex: 1; display: flex; flex-direction: column; }
.pub-body h3 { margin-top: 0; }
.pub-body > a:last-child { margin-top: auto; }
.pub-detail-cover {
  margin: 0;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  overflow: hidden;
}
.pub-detail-cover img {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}
/* Kapak görseli içerik bloğuyla birleşik görünsün */
.pub-detail-cover + .detail-block {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Yayın içeriği: alıntı (blockquote) */
.detail-block blockquote {
  margin: 1.8rem 0;
  padding: 1.1rem 1.5rem;
  border-left: 4px solid var(--secondary-color);
  background: var(--surface-alt);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: var(--text-color);
  font-style: italic;
}
.detail-block blockquote p { margin: 0; }
.detail-block blockquote p + p { margin-top: 0.6rem; }

/* Yayın içeriği: Quill hizalama sınıfları */
.detail-block .ql-align-center { text-align: center !important; }
.detail-block .ql-align-right { text-align: right !important; }
.detail-block .ql-align-justify { text-align: justify !important; }
.inner-page .inner-publication-card h3 a {
  color: inherit;
}
.inner-page .inner-publication-card p {
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.inner-page .inner-pub-date {
  color: #8a6c2c !important;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem !important;
}
.inner-page .inner-contact-grid {
  gap: 1.6rem;
}
.inner-page .inner-subtitle {
  margin-top: 0;
}
.inner-page .inner-contact-item {
  margin-bottom: 1.4rem;
}
.contact-detail-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
}
.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  padding-left: 0;
  border-bottom: 1px solid #eef2f7;
}
.contact-detail-list li::before { content: none !important; }
.contact-detail-list li:last-child { border-bottom: none; }
.contact-detail-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.12);
  color: var(--secondary-color);
  font-size: 1.2rem;
}
.contact-detail-icon-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #1faa52;
}
.contact-detail-list h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin: 0 0 0.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-detail-list a {
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.6;
  transition: var(--transition);
}
.contact-detail-list a:hover { color: var(--secondary-hover); }

/* Avukat-Müvekkil Gizliliği kutusu */
.confidential-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, #0d1626 0%, #16243d 100%);
  color: #e4dccd;
  border: 1px solid rgba(176, 141, 68, 0.25);
}
.confidential-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 68, 0.18);
  color: var(--secondary-color);
  font-size: 1.25rem;
}
.confidential-box strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.confidential-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #c9bfae;
  text-align: left !important;
}
.inner-page .inner-alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
}
.inner-page .inner-alert-success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #10b981;
}
.inner-page .inner-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #ef4444;
}
.inner-page .inner-btn-full {
  width: 100%;
}
.inner-page .contact-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.inner-page .contact-captcha-group input {
  max-width: 140px;
}
.inner-page .inner-map-wrap {
  margin-top: 3.2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .home-page .home-hero-grid,
  .home-page .home-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-page .home-about-portrait {
    max-width: none;
    width: 100%;
  }
  .home-page .home-practice-grid,
  .home-page .home-publication-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-page .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-page .home-hero::after {
    background-size: cover, 420px;
    background-position: center center, right -80px bottom -150px;
  }
  .inner-page .inner-practice-grid,
  .inner-page .inner-publication-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-container { flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0.45rem 0; }
  .logo { display: flex; justify-content: flex-start; flex: 1; min-width: 0; }
  .logo img { height: 50px; }
  .menu-toggle { display: inline-flex; }
  .header-container.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header-container.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .header-container.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav { width: 100%; display: none; padding-top: 0.2rem; }
  .header-container.nav-open nav { display: block; }
  nav ul {
    flex-direction: column;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 0.65rem;
    box-shadow: var(--shadow-md);
  }
  nav a {
    font-size: 0.92rem;
    display: block;
    padding: 0.45rem 0.4rem;
  }
  nav a.active::before { display: none; }
  .hero { padding: 5rem 1rem 4rem; }
  .hero h2 { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  .page-header { padding: 4rem 1rem; }
  .page-header h1 { font-size: 2.2rem; }
  .home-page .home-hero { padding: 4.5rem 0 4rem; }
  .home-page .home-hero h1 { font-size: 2rem; }
  .home-page .home-hero::after {
    background-size: cover, 340px;
    background-position: center center, right -90px bottom -125px;
    opacity: 0.12;
  }
  .home-page .home-hero-grid,
  .home-page .home-about-grid,
  .home-page .home-process-grid,
  .home-page .home-publication-grid,
  .home-page .home-practice-grid,
  .home-page .home-metrics-grid {
    grid-template-columns: 1fr;
  }
  .home-page .home-hero-actions .btn {
    width: 100%;
  }
  .home-page .home-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-page .home-about-name-line {
    display: block;
  }
  .home-page .home-about-name-line + .home-about-name-line::before {
    content: none;
  }
  .home-page .home-about-name-line + .home-about-name-line {
    margin-top: 0.2rem;
  }
  .inner-page .inner-practice-grid,
  .inner-page .inner-publication-grid {
    grid-template-columns: 1fr;
  }
  .inner-page .inner-title {
    font-size: 1.7rem;
  }
  .inner-page .inner-title-sm {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }
  .inner-page .inner-lead {
    font-size: 1rem;
  }
  .inner-page .detail-block {
    padding: 1.4rem 1.2rem;
  }
  /* Mobilde uzun metinlerde iki yana yaslama büyük boşluklar yaratıyor; sola hizala */
  .inner-page .detail-block :where(p, li) {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
  }
  .inner-page .practice-detail-cta {
    padding: 1.75rem 1.4rem;
  }
  .inner-page .practice-detail-footer {
    gap: 0.85rem;
  }
  .inner-page .ozgecmis-content.detail-block {
    padding: 0 0 1.6rem;
  }
  .inner-page .ozgecmis-banner figcaption {
    padding: 0.55rem 1.6rem;
  }
  .inner-page .ozgecmis-intro {
    padding: 1.6rem 1.6rem 1.4rem;
    margin-bottom: 1.4rem;
  }
  .inner-page .ozgecmis-body {
    padding: 0 1.6rem;
  }
  .inner-page .ozgecmis-highlights {
    gap: 0.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-top: 4rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  /* Hero slider mobil */
  .hero-slider { min-height: 78vh; }
  .hero-slide { background-position: center center; }
  .hero-slide-inner { padding: 2.5rem 0; }
  .hero-slide h1 { font-size: 1.7rem; line-height: 1.25; overflow-wrap: break-word; }
  .hero-slide .hero-slide-text { font-size: 1rem; }
  .hero-slide-inner .home-hero-actions .btn { width: 100%; }
  .hero-arrow { display: none; }
  /* Sosyal float mobilde sadece ikon */
  .social-float { right: 14px; bottom: 14px; gap: 0.45rem; }
  .social-float-btn { width: 46px; height: 46px; }
  .whatsapp-float-text { display: none; }
  .whatsapp-float { padding: 0.85rem; }
  .whatsapp-float i { font-size: 1.7rem; }
  /* Navbar CTA mobil menüde */
  .nav-cta-item { margin-left: 0; }
  nav a.nav-cta { justify-content: center; width: 100%; margin-top: 0.3rem; }
  /* Üst bar mobil */
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; padding: 0.45rem 0; }
  .topbar-right { gap: 1rem; font-size: 0.78rem; }
  /* Güven esasları mobil */
  .home-values-grid { grid-template-columns: 1fr; }
  .home-values { padding: 3.5rem 0; }
}

@media (max-width: 576px) {
  .container { width: 92%; }
  .logo img { height: 46px; }
  .menu-toggle { width: 40px; height: 36px; }
  nav ul { gap: 0.35rem; padding: 0.55rem; }
  nav a { font-size: 0.88rem; }
  .home-page .home-hero h1 { font-size: 1.7rem; }
  .home-page .home-hero-content p { font-size: 0.98rem; }
  .home-page .home-kicker { font-size: 0.72rem; }
  .home-page .home-hero-actions { gap: 0.7rem; }
  .home-page .home-trust-items span { font-size: 0.8rem; padding: 0.45rem 0.7rem; }
  .home-page .home-cta-box { padding: 1.5rem; }
  .home-page .home-about-portrait figcaption {
    font-size: 1.55rem;
    padding: 1.25rem 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .inner-page .page-header {
    padding: 3.2rem 0;
  }
  .inner-page .page-header::after {
    background-size: cover, 260px;
    background-position: center center, right -90px center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* İki yana yaslı metin hizalaması */
main :where(p, li),
.site-footer :where(p, li),
.detail-block :where(p, li),
.inner-lead,
.practice-detail-intro,
.card :where(p, li),
.inner-practice-card :where(p, li),
.inner-note-box :where(p, li),
.contact-info :where(p, li),
.home-page .home-hero-content :where(p, li),
.home-page .home-hero-panel li,
.home-page .home-about :where(p, li),
.home-page .home-practice-card :where(p, li),
.home-page .home-process-grid :where(p, li),
.home-page .home-publication-card :where(p, li),
.home-page .home-cta :where(p, li) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Ortalanmış / kısa UI metinlerinde justify uygulanmaz */
.page-header :where(p, li),
.text-center,
.text-center :where(p, li),
.home-metrics-grid :where(p, li),
.practice-detail-cta,
.practice-detail-cta p,
.ozgecmis-highlights li,
.ozgecmis-banner figcaption,
.home-publication-card .home-pub-date,
.input-group label,
.footer-bottom,
.footer-bottom p,
nav,
nav a,
.btn {
  text-align: center;
}

.input-group label {
  text-align: left;
}

/* Hero ve kısa vurgu metinleri sola hizalı kalsın (justify uygulanmaz) */
.hero-slide-text,
.hero-slide h1,
.home-practice-more {
  text-align: left !important;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.highlight { color: #d9534f; font-weight: 600; }
