/* Boğaziçi Hukuk — genel tema */
:root {
  --navy: #0d1b3d;
  --gold: #c8a75d;
  --light: #f5f7fb;
  --text: #1c2433;
  --white: #fff;
  --header-text: #2b2f36;
  --font-sans: "Montserrat", Arial, sans-serif;
  --article-accent: #d32f2f;
  --footer-bar: #1d264f;
  --footer-icon-bg: #a52a2a;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ——— Header (varsayılan: koyu, blog/iletişim) ——— */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  margin: 0;
  font-size: 1.25rem;
}

.logo span {
  color: var(--gold);
}

nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 16px;
  font-weight: 600;
}

nav a.active,
nav a:hover {
  color: var(--gold);
}

/* ——— Ana sayfa: beyaz header + logo ——— */
.site-header--light {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header--light .nav-wrap {
  padding: 16px 0;
}

.site-header--light .brand-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header--light .brand-logo img {
  height: 76px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 28px;
}

.main-nav a {
  margin: 0;
  color: var(--header-text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--navy);
}

.main-nav a.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--header-text);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 20px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .site-header--light .nav-wrap {
    position: relative;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
}

/* ——— Hero slider (ana sayfa) ——— */
.hero-slider {
  position: relative;
  min-height: min(78vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(78vh, 640px);
  padding: 48px 16px;
}

.hero-copy {
  text-align: center;
  max-width: 820px;
  color: var(--white);
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.hero-text {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hero-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero-arrow--prev {
  left: clamp(12px, 4vw, 32px);
}

.hero-arrow--next {
  right: clamp(12px, 4vw, 32px);
}

/* Eski tek görsel hero (blog vb. kullanılmıyorsa etkisiz) */
.hero {
  background: linear-gradient(rgba(13, 27, 61, 0.85), rgba(13, 27, 61, 0.85));
  min-height: 55vh;
  display: grid;
  place-items: center;
  color: var(--white);
}

.hero-content {
  text-align: center;
  max-width: 750px;
  padding: 28px 0;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--gold);
  color: #111;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ——— Hizmetlerimiz ——— */
.services-section {
  background: var(--white);
  padding: clamp(40px, 5vw, 68px) 0;
}

.services-section__title {
  margin: 0 0 clamp(24px, 4vw, 40px);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: #1a1a3d;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
}

.service-card {
  background: #c9b075;
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px) clamp(14px, 2vw, 20px);
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  box-sizing: border-box;
}

a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.service-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* ——— CTA bandı (hizmetler altı) ——— */
.cta-banner {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 24px;
  text-align: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.cta-banner__text {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.95;
}

.cta-banner__phone {
  margin: 4px 0 0;
}

.cta-banner__tel {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.cta-banner__tel:hover {
  text-decoration: underline;
}

.cta-banner__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 48px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--white);
  background: #c8b282;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-banner__btn:hover {
  background: #b9a274;
  transform: translateY(-1px);
}

/* ——— Sıkça sorulan sorular ——— */
.faq-section {
  padding: clamp(44px, 6vw, 80px) 0;
  background: var(--white);
}

.faq-section__title {
  margin: 0 0 clamp(24px, 3.5vw, 36px);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: #1a1a3d;
  letter-spacing: 0.02em;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-section .faq-loading {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.faq-item__header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--text);
  transition: background 0.15s ease;
}

.faq-item__header:hover {
  background: rgba(13, 27, 61, 0.04);
}

.faq-item__header:focus {
  outline: none;
}

.faq-item__header:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8b282;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.4;
  color: #141c2e;
}

.faq-item__chevron {
  flex-shrink: 0;
  display: flex;
  color: #1a1a1a;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__panel {
  border-top: 1px solid rgba(13, 27, 61, 0.08);
}

.faq-item__answer {
  padding: 0 18px 18px 74px;
}

.faq-item__answer p {
  margin: 12px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #444;
}

.faq-item__answer p:first-child {
  margin-top: 14px;
}

/* ——— İstatistik bandı (SSS altı) ——— */
.stats-banner {
  background: #c8b282;
  padding: clamp(48px, 7vw, 88px) 24px;
  color: var(--white);
}

.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  text-align: center;
}

.stats-banner__loading {
  margin: 0;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.stats-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
}

.stats-banner__circle {
  width: clamp(72px, 14vw, 102px);
  height: clamp(72px, 14vw, 102px);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: #c8b282;
  line-height: 1;
  flex-shrink: 0;
}

.stats-banner__label {
  margin: 0;
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  max-width: 18ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px auto;
}

.section-intro {
  padding: 24px 0 8px;
  text-align: center;
  max-width: 720px;
}

.section-intro h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.section-intro p {
  margin: 0 0 16px;
  color: #444;
}

.feature-card,
.post-card,
.contact-form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-head a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.post-card h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.post-date {
  color: #666;
  font-size: 0.9rem;
}

/* ——— Son eklenen makaleler (ana sayfa + makale listesi) ——— */
.latest-articles {
  background: var(--white);
  padding: clamp(40px, 5vw, 72px) 0;
}

.latest-articles__title {
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: #1a1f3d;
  letter-spacing: 0.02em;
  text-align: left;
}

.latest-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin: 0;
  list-style: none;
  padding: 0;
}

.latest-articles__empty {
  margin: 0;
  grid-column: 1 / -1;
  color: #666;
  font-size: 0.95rem;
}

.latest-articles__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}

.latest-articles__all-btn {
  display: inline-block;
  padding: 14px 52px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--white);
  background: #c8b282;
  transition: background 0.2s ease, transform 0.2s ease;
}

.latest-articles__all-btn:hover {
  background: #b9a274;
  transform: translateY(-1px);
}

.article-card {
  margin: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.11);
}

.article-card__hit {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8eaf0;
}

.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__badge {
  position: absolute;
  top: 12px;
  left: 0;
  padding: 6px 14px 6px 12px;
  background: var(--article-accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 999px 999px 0;
  line-height: 1.2;
}

.article-card__body {
  padding: 16px 16px 18px;
}

.article-card__excerpt {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.article-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--article-accent);
}

/* ——— Ana sayfa harita + randevu ——— */
#iletisim {
  scroll-margin-top: 88px;
}

.home-map {
  width: 100%;
  line-height: 0;
  background: #e0e3eb;
}

.home-map__frame {
  width: 100%;
  height: min(420px, 58vw);
  min-height: 260px;
  border: 0;
  display: block;
}

.home-contact-cta {
  background: var(--navy);
  color: var(--white);
  padding: clamp(48px, 7vw, 88px) 0;
}

.home-contact-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.home-contact-cta__heading {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.home-contact-cta__text {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
}

.home-contact-cta__form {
  margin: 0;
}

.home-contact-cta__row {
  margin-bottom: 14px;
}

.home-contact-cta__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-contact-cta__form input,
.home-contact-cta__form select,
.home-contact-cta__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  box-sizing: border-box;
}

.home-contact-cta__form input::placeholder,
.home-contact-cta__form textarea::placeholder {
  color: #888;
}

.home-contact-cta__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.home-contact-cta__form textarea {
  resize: vertical;
  min-height: 120px;
}

.home-contact-cta__submit {
  margin-top: 8px;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: #b71c1c;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-contact-cta__submit:hover {
  background: #961010;
  transform: translateY(-1px);
}

.home-contact-cta__status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-contact-cta__status.success {
  color: #a8e6c0;
}

.home-contact-cta__status.error {
  color: #ffcccc;
}

.articles-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 72px);
  background: var(--white);
}

.articles-page__header {
  margin-bottom: clamp(22px, 3vw, 32px);
  text-align: left;
}

.articles-page__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: #1a1f3d;
}

.articles-page__intro {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.post-detail-page {
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 6vw, 72px);
  background: var(--light);
}

.post-detail-page__inner {
  max-width: 760px;
}

.post-detail-page__back {
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.post-detail-page__back a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.post-detail-page__back a:hover {
  text-decoration: underline;
}

.post-detail-page__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 16px;
}

.post-detail-page__date {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #666;
}

.post-detail-page__title {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1f3d;
  line-height: 1.25;
}

.post-detail-page__body {
  font-size: 1rem;
  line-height: 1.8;
  color: #2b2f36;
}

.post-detail-page__body p {
  margin: 0 0 1rem;
}

.page-space {
  padding: 30px 0 46px;
}

.page-title h2 {
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form {
  max-width: 700px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccd1de;
  border-radius: 6px;
  font-family: inherit;
}

.status {
  margin-top: 10px;
  font-weight: 600;
}

.status.success {
  color: #17773f;
}

.status.error {
  color: #ad1f1f;
}

/* ——— Site alt bilgi (minimal, tipografi odaklı) ——— */
.site-footer {
  margin-top: clamp(40px, 6vw, 72px);
  padding: 0;
  background: #fafafa;
  color: #64748b;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.site-footer__brand {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.35rem;
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  opacity: 0.96;
  transition: opacity 0.15s ease;
}

.site-footer__logo-link:hover {
  opacity: 1;
}

.site-footer__logo-link img {
  height: clamp(56px, 6.5vw, 72px);
  width: auto;
  max-width: min(300px, 92vw);
  object-fit: contain;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.65fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 3.5rem);
  row-gap: 2.25rem;
  padding: clamp(1.15rem, 2.5vw, 1.65rem) 0 clamp(1.75rem, 3vw, 2.25rem);
  align-items: start;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__title {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.site-footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__contacts > li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.site-footer__contacts a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__contacts a:hover {
  color: var(--navy);
}

.site-footer__icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-top: 0.125rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #94a3b8;
}

.site-footer__icon-box svg {
  width: 15px;
  height: 15px;
  display: block;
  stroke-width: 1.85;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.site-footer__social-link:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

.site-footer__social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.site-footer__social-link--fb {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding-top: 1px;
}

.site-footer__social-link--li {
  border-radius: 8px;
  font-size: 0.65rem;
  letter-spacing: -0.02em;
}

.site-footer__policies {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__policies li {
  padding: 0;
}

@media (min-width: 640px) {
  .site-footer__policies {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 0.35rem;
  }

  .site-footer__policies li {
    display: inline-flex;
    align-items: center;
  }

  .site-footer__policies li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 0.75rem;
    border-radius: 50%;
    background: #cbd5e1;
    vertical-align: middle;
  }
}

.site-footer__policies a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__policies a:hover {
  color: #0f172a;
}

.site-footer__policies a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__copy-wrap {
  padding: 1.25rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: transparent;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__social-link,
  .site-footer__contacts a,
  .site-footer__policies a {
    transition: none;
  }
}

/* ——— Hakkımızda önizleme (ana sayfa) ——— */
.about-preview {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px) 0;
}

.about-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-preview__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.about-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.about-preview__accent {
  display: block;
  width: 48px;
  height: 4px;
  background: #b71c1c;
  flex-shrink: 0;
}

.about-preview__more {
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.about-preview__more:hover {
  color: var(--navy);
}

.about-preview__title {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a3d;
  letter-spacing: 0.02em;
}

.about-preview__body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #2b2f36;
}

.about-preview__body p {
  margin: 0 0 1rem;
  text-align: justify;
}

.about-preview__body p:last-child {
  margin-bottom: 0;
}

/* ——— Hakkımızda / hizmet detay (modern okuma düzeni) ——— */
.about-page {
  --about-measure: 42rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #ffffff 100%);
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 6vw, 96px);
  min-height: 42vh;
}

.about-page__layout {
  max-width: min(var(--about-measure) + 5rem, 100%);
  margin: 0 auto;
}

.about-page__inner {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 40px);
  border: 1px solid rgba(13, 27, 61, 0.07);
  box-shadow:
    0 1px 2px rgba(13, 27, 61, 0.04),
    0 12px 40px rgba(13, 27, 61, 0.07);
}

.about-page__header {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}

.about-page__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.about-page__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0f172a;
}

.about-page__body.about-page__prose {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: #334155;
  max-width: var(--about-measure);
}

.about-page__prose p {
  margin: 0 0 1.35em;
  text-align: start;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.about-page__prose p:last-child {
  margin-bottom: 0;
}

/* Giriş paragrafı: hafif vurgu, okunabilir blok */
.about-page__prose > p:first-of-type:not(.status) {
  font-size: 1.08rem;
  line-height: 1.84;
  color: #1e293b;
}

.about-page__prose .status.error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(173, 31, 31, 0.06);
  border: 1px solid rgba(173, 31, 31, 0.2);
  color: #9b1c1c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-page__back {
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid rgba(13, 27, 61, 0.06);
}

.about-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 61, 0.12);
  background: rgba(248, 250, 252, 0.95);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-page__back-link:hover {
  background: var(--white);
  border-color: rgba(13, 27, 61, 0.2);
  color: var(--footer-bar);
  box-shadow: 0 4px 14px rgba(13, 27, 61, 0.08);
  transform: translateX(-2px);
}

.about-page__back-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.about-page__back-icon {
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .about-page__back-link {
    transition: none;
  }

  .about-page__back-link:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .about-preview__media {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features,
  .posts-grid,
  .latest-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-banner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-contact-cta__inner {
    grid-template-columns: 1fr;
  }

  .home-contact-cta__row--2 {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-header:not(.site-header--light) .nav-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .site-header:not(.site-header--light) nav a {
    margin: 0 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .posts-grid,
  .latest-articles__grid {
    grid-template-columns: 1fr;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .faq-item__answer {
    padding-left: 18px;
  }

  .stats-banner__grid {
    grid-template-columns: 1fr;
  }
}
