/* ==========================================================================
   Toybelen Lastik — Kurumsal tema, sarı/siyah, SEO odaklı
   ========================================================================== */

:root {
  /* Layout */
  --container: 1120px;
  --pad: 16px;
  --header-h: 96px;

  /* Palette: sarı kontrollü, siyah ağırlıklı */
  --black: #0b0d10;
  --black-soft: #111827;
  --slate: #1e293b;
  --slate-light: #334155;
  --muted: #64748b;
  --text: #0f172a;
  --bg: #ffffff;
  --bg-alt: #f8fafc;

  /* Sarı — sadece vurgu: kicker, CTA, aktif durumlar */
  --yellow: #eab308;
  --yellow-dim: #ca8a04;
  --yellow-focus: rgba(234, 179, 8, 0.35);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html, body { height: 100%; margin: 0; }
body {
  width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-alt);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Üst bilgi çubuğu (Konum, Telefon, Çalışma saatleri)
   -------------------------------------------------------------------------- */
.top-info-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
}

.top-info-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-info-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  transition: color 0.2s;
}

.top-info-item:hover {
  color: #fff;
}

.top-info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--yellow);
}

.top-info-right {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobil: üst bilgi çubuğunu gizle (masaüstünde görünsün) */
@media (max-width: 768px) {
  .top-info-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 13, 16, 0.06);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black-soft);
  margin-left: -16px;
  flex-shrink: 0;
}

.brand img {
  height: 88px;
  width: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.brand .brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.main-nav a {
  font-size: 1.125rem;
  color: var(--slate-light);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover { color: var(--black-soft); }
.main-nav a.active {
  color: var(--black-soft);
  border-bottom-color: var(--yellow);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Hamburger toggle — sadece mobilde görünür */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(11, 13, 16, 0.06); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black-soft);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-close { display: none; }

/* Navbar "Hemen Arayın" butonu — sadece masaüstünde */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--black-soft);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.header-call-btn:hover {
  background: var(--yellow-dim);
  transform: translateY(-1px);
}

.header-call-btn:focus-visible {
  outline: 2px solid var(--black-soft);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Hero — tam ekran (mobil + web aynı)
   Görsel: 1920×1080 px (16:9), önemli öğeler ortada. Opsiyonel: 2560×1440.
   -------------------------------------------------------------------------- */
.hero {
  --hero-min-h: calc(100vh - var(--header-h));
  --hero-min-h-dvh: calc(100dvh - var(--header-h));
  min-height: var(--hero-min-h);
  min-height: var(--hero-min-h-dvh);
  display: grid;
  align-items: center;
  background-color: var(--black);
  background-image: linear-gradient(
    90deg,
    rgba(11, 13, 16, 0.82) 0%,
    rgba(11, 13, 16, 0.45) 50%,
    rgba(11, 13, 16, 0.2) 100%
  ),
  url("../img/logos/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-inner {
  padding: 48px 0 56px;
}

.hero-hours {
  margin-bottom: 24px;
}

.hero-hours-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--yellow);
  margin-right: 6px;
}

.hero-hours-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.hero .hero-desc {
  margin: 0 0 24px;
  max-width: 54ch;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: filter 0.2s, background 0.2s, border-color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover { filter: brightness(0.94); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

/* --------------------------------------------------------------------------
   Bölüm: Hakkımızda (ana sayfa)
   -------------------------------------------------------------------------- */
.home-about {
  padding: 56px 0 64px;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-kicker {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-light);
  margin-bottom: 16px;
}

.about-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--black-soft);
}

.about-head .highlight {
  color: var(--yellow-dim);
}

.about-underline {
  display: flex;
  gap: 0;
  align-items: center;
}

.underline-dark {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--black-soft);
}

.underline-light {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(11, 13, 16, 0.15);
}

.about-content {
  padding-left: 24px;
  border-left: 1px solid rgba(11, 13, 16, 0.12);
}

.about-content p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
}

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

.about-content-mobile {
  display: none;
}

/* --------------------------------------------------------------------------
   Bölüm: Hizmetler (ana sayfa teaser)
   -------------------------------------------------------------------------- */
.home-services {
  padding: 56px 0 64px;
  background: var(--bg);
}

.home-services .section-head {
  margin-bottom: 32px;
}

.home-services .section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-services .section-head--center p {
  margin: 0;
  max-width: 48ch;
}

.home-services .section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--black-soft);
}

.home-services .section-head p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  max-width: 48ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(11, 13, 16, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 8px 24px rgba(11, 13, 16, 0.08);
}

.service-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--yellow-dim);
}

.service-card p {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
  flex: 1;
}

.service-card-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--yellow-dim);
  border: 1px solid var(--yellow-dim);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.service-card-btn:hover {
  background: var(--yellow-dim);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Bölüm: İletişim CTA
   -------------------------------------------------------------------------- */
.home-cta {
  padding: 48px 0 56px;
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.home-cta h2 {
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.home-cta p {
  margin: 0 0 24px;
  font-size: 1rem;
  max-width: 42ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
}

.home-cta .btn-primary {
  background: var(--yellow);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   Diğer sayfalar (iç sayfa layout)
   -------------------------------------------------------------------------- */
.site-main {
  padding: 40px 0 64px;
}

.page-header {
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  margin: 0;
  color: var(--black-soft);
}

.page-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.page-header--center h1 {
  margin-bottom: 12px;
}

.page-header--center p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   İletişim sayfası
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(11, 13, 16, 0.08);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-soft);
  margin: 0 0 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--yellow-dim);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--black-soft);
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
}

.contact-item a {
  color: var(--slate);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--yellow-dim);
}

.contact-whatsapp {
  display: inline-block;
  font-size: 0.8125rem;
  color: #25d366;
  margin-top: 4px;
}

.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 13, 16, 0.08);
  background: var(--bg-alt);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

.contact-cta {
  background: #166534;
  color: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  margin-bottom: 32px;
  text-align: center;
}

.contact-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.contact-cta p {
  margin: 0 0 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-inline: auto;
}

.contact-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: var(--black-soft);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.contact-cta-btn:hover {
  background: var(--yellow);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap iframe {
    min-height: 280px;
  }

  .contact-cta {
    padding: 40px 32px;
    margin-inline: 16px;
  }

  .contact-cta-title {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Hizmetlerimiz sayfası — zigzag layout
   -------------------------------------------------------------------------- */
.hizmet-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 1px; /* flex children overflow fix */
}

.hizmet-row {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 12px;
  scroll-margin-top: 100px; /* Anchor link ile gelindiğinde sticky header altında kalmasın */
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(11, 13, 16, 0.06);
  border: 1px solid rgba(11, 13, 16, 0.06);
}

.hizmet-row:last-child {
  margin-bottom: 0;
}

/* Mobil: görsel üstte, metin altta */
.hizmet-img {
  order: 1;
  flex: 0 0 auto;
  width: 100%;
  min-height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-light);
}

.hizmet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hizmet-content {
  order: 2;
  padding: 24px 20px;
}

.hizmet-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--black-soft);
}

.hizmet-title + p {
  margin-top: 0;
}

.hizmet-content p {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
}

.hizmet-content p:last-child,
.hizmet-content .hizmet-title:last-of-type + p {
  margin-bottom: 0;
}

.hizmet-content .hizmet-title:not(:first-child) {
  margin-top: 20px;
}

/* Desktop: zigzag — tek satırlar metin sol/görsel sağ, çift satırlar görsel sol/metin sağ */
@media (min-width: 769px) {
  .hizmet-row {
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 32px;
  }

  .hizmet-row .hizmet-content { order: 1; }
  .hizmet-row .hizmet-img { order: 2; }
  .hizmet-row--reverse .hizmet-content { order: 2; }
  .hizmet-row--reverse .hizmet-img { order: 1; }

  .hizmet-img {
    flex: 0 0 48%;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .hizmet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
  }

  .hizmet-title {
    font-size: 1.375rem;
    margin-bottom: 14px;
  }

  .hizmet-content p {
    font-size: 1rem;
    margin-bottom: 0;
  }

.hizmet-content .hizmet-title:not(:first-child) {
  margin-top: 24px;
  }
}

/* --------------------------------------------------------------------------
   Hakkımızda sayfası — hero + istatistik kartları (kartlar hero üzerine taşar)
   -------------------------------------------------------------------------- */
.site-main--about {
  padding-top: 0;
}

.about-hero {
  position: relative;
  background: var(--black-soft);
  color: #fff;
  text-align: center;
  padding: 48px 0 130px; /* Alt padding: hero metni ile kartlar arası boşluk */
}

.about-hero-inner {
  max-width: 640px;
  margin-inline: auto;
}

.about-hero-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.about-hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Kartlar hero'nun alt kenarında, sınırı ortadan keserek taşar */
.about-stats-inner {
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--pad);
  z-index: 2;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.about-stat-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(11, 13, 16, 0.15);
  border: 1px solid rgba(11, 13, 16, 0.08);
}

.about-stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--yellow-dim);
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
}

/* Görsel + metin içerik (sadece Hakkımızda sayfası) */
.site-main--about .about-content {
  background: var(--bg-alt);
  padding: 120px 0 56px;
}

.about-content-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

.about-content-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-content-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
}

.about-content-text {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--black-soft);
}

.about-content-text p {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate);
}

.about-content-text p:last-of-type {
  margin-bottom: 0;
}

.about-content-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.about-content-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
}

.about-content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0d10' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-content-contact {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 13, 16, 0.1);
  font-size: 0.9375rem !important;
}

.about-content-contact a {
  color: var(--yellow-dim);
  font-weight: 600;
}

.about-content-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-stats-inner {
    bottom: -48px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .about-stat-card {
    padding: 20px 12px;
  }

  .about-stat-num {
    font-size: 1.5rem;
  }

  .about-stat-label {
    font-size: 0.75rem;
  }

  .site-main--about .about-content {
    padding: 80px 0 40px;
  }

  .about-content-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  /* Mobil: absolute + aspect-ratio yerine normal akış — tüm cihazlarda düzgün görünsün */
  .about-content-img {
    position: relative;
    min-height: 0;
  }

  .about-content-img img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    inset: unset;
    object-fit: cover;
    vertical-align: middle;
  }

  .about-content-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .about-content-text p {
    font-size: 0.875rem;
  }

  .about-content-list li {
    font-size: 0.875rem;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 28px 0 100px;
  }

  .about-stats-inner {
    bottom: -44px;
  }

  .site-main--about .about-content {
    padding: 56px 0 32px;
  }

  .about-stats-grid {
    gap: 10px;
  }

  .about-stat-card {
    padding: 18px 8px;
  }

  .about-stat-num {
    font-size: 1.375rem;
  }

  .about-stat-label {
    font-size: 0.6875rem;
  }

}

/* --------------------------------------------------------------------------
   Hakkımızda — Alıntı ve Neden Biz
   -------------------------------------------------------------------------- */
.about-quote {
  background: var(--bg-alt);
  padding: 56px 0;
}

.about-quote-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.about-quote-icon {
  display: block;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(202, 138, 4, 0.35);
  line-height: 1;
  margin-bottom: 8px;
}

.about-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: normal;
}

.about-quote-cite {
  font-size: 0.9375rem;
  color: var(--muted);
  font-style: normal;
}

.about-why {
  background: var(--bg-alt);
  padding: 0 0 64px;
}

.about-why-title {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--black-soft);
  text-align: center;
  margin: 0 0 12px;
}

.about-why-sub {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-why-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(11, 13, 16, 0.06);
  border: 1px solid rgba(11, 13, 16, 0.06);
}

.about-why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  color: var(--yellow-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-why-icon svg {
  width: 24px;
  height: 24px;
}

.about-why-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black-soft);
  margin: 0 0 12px;
}

.about-why-card p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .about-quote {
    padding: 40px 0;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-why-card {
    padding: 28px 20px;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.footer-col p {
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.footer-link {
  display: inline-block;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--black);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px !important;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-contact:last-child {
  margin-bottom: 0 !important;
}

.footer-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-keywords {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .site-footer {
    padding: 40px 0 24px;
  }
}

/* --------------------------------------------------------------------------
   Mobil sabit iletişim çubuğu (HEMEN ARA + WHATSAPP)
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
  display: none;
}

/* --------------------------------------------------------------------------
   WhatsApp sabit buton (masaüstü)
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  z-index: 100;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

.whatsapp-float:focus-visible {
  outline: 3px solid var(--yellow-focus);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Tablet ve mobil (768px) */
@media (max-width: 768px) {
  :root { --header-h: 84px; }

  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    min-height: var(--header-h);
    height: var(--header-h);
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(11, 13, 16, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    padding: calc(var(--header-h) + 24px) 24px 24px;
    z-index: 56;
    display: flex;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-close {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close:hover { background: rgba(11, 13, 16, 0.06); }
  .nav-close:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
  }
  .nav-close-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
  }
  .nav-close-icon::before,
  .nav-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black-soft);
  }
  .nav-close-icon::before { transform: translateY(-50%) rotate(45deg); }
  .nav-close-icon::after { transform: translateY(-50%) rotate(-45deg); }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 0 0 auto;
    min-height: 56px;
    padding: 16px 24px;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(11, 13, 16, 0.08);
  }
  .main-nav a:last-child { border-bottom: none; }

  .brand .brand-text { display: none; }

  .brand img { height: 72px; }

  /* Hero: mobilde sağ taraf (kişi) görünsün */
  .hero {
    background-position: 75% 50%;
  }
  .hero .container {
    padding-inline: 24px;
  }
  .hero-inner {
    padding: 32px 0 40px;
  }
  .hero-kicker {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
  }
  .hero .hero-desc {
    font-size: 0.9375rem;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-head .about-kicker {
    margin-bottom: 10px;
  }
  .about-head h2 {
    margin-bottom: 8px;
  }
  .about-head .about-underline {
    margin-bottom: 0;
  }
  .about-content-desktop {
    display: none;
  }
  .about-content-mobile {
    display: block;
  }
  .about-content {
    padding-left: 0;
    border-left: none;
  }
  .home-about { padding: 28px 0 36px; }
  .home-services { padding: 40px 0 48px; }
  .home-cta { padding: 40px 0 48px; }

  /* Mobilde navbar "Hemen Arayın" butonunu gizle */
  .header-call-btn { display: none; }

  /* Mobilde sabit iletişim çubuğu göster, WhatsApp float gizle */
  .whatsapp-float { display: none; }

  /* Sabit CTA bar için alttan boşluk */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s, filter 0.2s;
  }

  .mobile-cta-btn:active { opacity: 0.9; }

  .mobile-cta-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .mobile-cta-call {
    background: #c41e3a;
  }

  .mobile-cta-call:hover { filter: brightness(1.1); }

  .mobile-cta-call svg { stroke: #fff; }

  .mobile-cta-whatsapp {
    background: #25d366;
  }

  .mobile-cta-whatsapp:hover { filter: brightness(1.1); }

  .mobile-cta-whatsapp svg { fill: #fff; }
}

body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 60; }

/* Çok dar ekranlar (480px) */
@media (max-width: 480px) {
  :root { --header-h: 80px; }

  .brand img { height: 64px; }

  .hero-inner {
    padding: 28px 0 36px;
  }
  .hero h1 {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }
  .hero .hero-desc {
    font-size: 0.875rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
