/* Nizip Taksi — açık, sade görsel dil */

:root {
  --yellow: #F5C518;
  --yellow-hover: #E0B010;
  --ink: #111111;
  --muted: #555555;
  --line: #E6E8EC;
  --bg: #FFFFFF;
  --bg-soft: #F4F5F7;
  --whatsapp: #128C7E;
  --whatsapp-hover: #0E7368;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(17, 17, 17, 0.06);
  --shadow-hover: 0 10px 28px rgba(17, 17, 17, 0.1);
  --header-h: 60px;
  --banner-h: 42px;
  --sticky-h: 56px;
  --max: 1040px;
  --ease: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 16px;
  font-weight: 600;
  z-index: 9999;
}

.skip-link:focus { top: 0; }

/* Top banner */
.top-banner {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  color: inherit;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  min-width: 0;
}

.logo strong {
  color: var(--yellow-hover);
  font-weight: 700;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 24px;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-list a:hover { color: var(--ink); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background var(--ease);
}

.header-phone:hover {
  background: var(--muted);
  color: var(--bg);
}

.header-phone svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      105deg,
      rgba(17, 17, 17, 0.9) 0%,
      rgba(17, 17, 17, 0.78) 40%,
      rgba(17, 17, 17, 0.45) 100%
    ),
    url("../img/nizip-taksi-tarihi-cadde-fiat-egea.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@supports not (background-image: url("x.webp")) {
  .hero {
    background-image:
      linear-gradient(
        105deg,
        rgba(17, 17, 17, 0.9) 0%,
        rgba(17, 17, 17, 0.78) 40%,
        rgba(17, 17, 17, 0.45) 100%
      ),
      url("../img/nizip-taksi-tarihi-cadde-fiat-egea.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 96px 0 104px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 34em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

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

.hero .btn-primary:hover {
  background: var(--yellow-hover);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  min-height: 48px;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #222;
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--bg);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
  color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
  color: var(--ink);
}

.btn-sm {
  padding: 10px 16px;
  min-height: 40px;
  font-size: 0.875rem;
}

/* Phone card */
.hero-phone-card {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.hero-phone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--yellow);
}

.phone-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.phone-card-number {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color var(--ease);
}

.phone-card-number:hover { color: var(--yellow-hover); }

.phone-card-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.phone-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.phone-card-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Trust strip */
.trust-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.trust-strip-inner span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip-inner span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-hover);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 36px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

/* Page intro (inner pages) */
.page-intro {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 40px;
}

.page-intro .section-title,
.page-intro h1 {
  margin-bottom: 10px;
}

.page-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36em;
  line-height: 1.7;
}

/* Reviews */
.reviews {
  background: var(--bg-soft);
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.review-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: var(--yellow-hover);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1;
}

.review-item blockquote,
.review-item p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-item figcaption,
.review-item cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

/* Blog cards */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  border-color: #f0d56a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  align-self: flex-start;
  padding-bottom: 2px;
}

.blog-card a:hover { color: var(--yellow-hover); }

.blog-cta {
  margin-top: 28px;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.gallery-item:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.88);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.lightbox-close:hover {
  background: var(--yellow-hover);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  user-select: none;
}

.lightbox-nav:hover {
  background: var(--yellow-hover);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (min-width: 768px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}

body.lightbox-open {
  overflow: hidden;
}

/* Services */
.services {
  background: var(--bg);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.service-item {
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-item:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #f0d56a;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  grid-column: auto;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  grid-column: auto;
  margin: 0;
  flex: 1;
}

.service-call {
  grid-column: auto;
  grid-row: auto;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: all var(--ease);
  margin-top: 4px;
}

.service-call:hover {
  border-color: var(--ink);
  color: var(--bg);
  background: var(--ink);
}

.service-more {
  display: inline-block;
  margin-top: 8px;
  margin-left: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-more:hover {
  color: var(--ink);
}

/* Areas */
.areas {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.area-block h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color var(--ease);
}

.area-tag:hover {
  border-color: var(--yellow);
}

.areas-note {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg);
  border-left: 3px solid var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.areas-note p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Why */
.why-us {
  background: var(--bg);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-marker {
  width: 36px;
  height: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow-hover);
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 18px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--yellow-hover);
}

.faq-item summary:hover { color: var(--yellow-hover); }

.faq-item p {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-item p a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item p a:hover { color: var(--yellow-hover); }

/* About */
.about {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.about-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 40em;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
}

.about-points li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px #fff6c8;
}

.about-page .about-content,
.about-page .container > .about-content {
  max-width: 720px;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  padding: 56px 0;
}

.cta-band .section-title,
.cta-band h2 {
  color: var(--bg);
}

.cta-band .section-desc,
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.cta-band-phone {
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--yellow);
  margin: 8px 0 4px;
}

.cta-band-phone:hover {
  color: #ffd84a;
}

.cta-band .btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: var(--yellow-hover);
  color: var(--ink);
}

.cta-band .btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bg);
  color: var(--bg);
}

/* Article / blog post */
.article {
  background: var(--bg);
}

.article-container {
  max-width: 720px;
}

.article-header {
  margin-bottom: 28px;
}

.article-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1em;
}

.article-content h2 {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.75em 0 0.65em;
  letter-spacing: -0.01em;
}

.article-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--yellow-hover);
}

.article-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-related h2 {
  margin-top: 0;
}

.article-related ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
  color: var(--muted);
}

.article-related li {
  margin-bottom: 0.4rem;
}

.article-content strong {
  color: var(--ink);
}

.article-cta {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.article-cta p {
  color: var(--ink);
  margin-bottom: 14px;
}

.blog-list-page .blog-cards {
  margin-top: 8px;
}

/* Contact (dark block — homepage can use .cta-band instead) */
.contact {
  background: var(--ink);
  color: var(--bg);
}

.contact .section-label { color: var(--yellow); }

.contact .section-title { color: var(--bg); }

.contact .section-desc { color: rgba(255, 255, 255, 0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-row-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}

.contact-row h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-row p,
.contact-row a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bg);
}

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

.contact-row .phone-big {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
}

.contact-row .phone-big:hover { color: var(--yellow-hover); }

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

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

.contact .btn-primary:hover {
  background: var(--yellow-hover);
  color: var(--ink);
}

.contact-map {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

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

.contact-page .contact-map {
  border-color: var(--line);
}

/* Contact page (light background) */
.contact-page .contact-details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

.contact-page .contact-row-icon {
  background: var(--bg-soft);
  color: var(--yellow);
}

.contact-page .contact-row h2,
.contact-page .contact-row h3 {
  color: var(--muted);
}

.contact-page .contact-row p,
.contact-page .contact-row a {
  color: var(--ink);
}

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

.contact-page .contact-row .phone-big {
  color: var(--ink);
}

.contact-page .contact-row .phone-big:hover { color: var(--yellow-hover); }

.contact-page .contact-row p.contact-note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.footer,
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 40px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 32px;
}

.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-phone {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--sticky-h);
  background: var(--bg);
  border-top: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.sticky-bar.is-hidden { transform: translateY(100%); }

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--ease);
}

.sticky-call {
  background: var(--ink);
  color: var(--bg);
}

.sticky-call:hover {
  background: var(--muted);
  color: var(--bg);
}

.sticky-wa {
  background: var(--whatsapp);
  color: var(--bg);
}

.sticky-wa:hover {
  background: var(--whatsapp-hover);
  color: var(--bg);
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding-block: 8px;
    gap: 8px;
  }

  .logo {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
    flex-shrink: 0;
  }

  .header-phone {
    order: 2;
    flex-shrink: 0;
  }

  .nav {
    display: none;
    order: 4;
    flex-basis: 100%;
    width: 100%;
  }

  .nav.is-open {
    display: block;
  }

  .nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .header-phone {
    padding: 8px 12px;
    font-size: 0;
    gap: 0;
  }

  .header-phone svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .phone-card-actions {
    flex-direction: row;
  }

  .phone-card-actions .btn { flex: 1; }

  .cta-band .hero-actions {
    flex-direction: row;
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

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

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

  .contact-btns { flex-direction: row; }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 120px 0 132px;
  }

  .hero {
    background:
      linear-gradient(
        100deg,
        rgba(17, 17, 17, 0.92) 0%,
        rgba(17, 17, 17, 0.7) 38%,
        rgba(17, 17, 17, 0.28) 70%,
        rgba(17, 17, 17, 0.2) 100%
      ),
      url("../img/nizip-taksi-tarihi-cadde-fiat-egea.webp") center center / cover no-repeat;
  }

  .about-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .areas-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .areas-note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 769px) {
  .nav-list { display: flex; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }

  .sticky-bar { display: none; }
}
