/* ── Taksi Durağı Şablonu ── */
:root {
  --yellow: #F0B429;
  --yellow-light: #FFD875;
  --yellow-dark: #D49A15;
  --yellow-soft: #FFF8E8;
  --yellow-hero: linear-gradient(145deg, #FFFDF7 0%, #FFF6DC 45%, #FFECC0 100%);

  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F8F7F4;
  --warm: #F3F1EC;

  --gray-100: #F0EFEB;
  --gray-200: #E0DDD6;
  --gray-400: #888880;
  --gray-600: #555550;
  --gray-800: #222220;

  --wa: #25D366;
  --wa-dark: #1DA851;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --header-h: 64px;
  --stripe-h: 6px;
  --mobile-bar-h: 54px;
  --container-w: 1240px;
  --gutter: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-lg { width: 22px; height: 22px; }

.container {
  width: min(var(--container-w), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* ── Taksi şeridi + geçişler ── */
.taxi-stripe {
  --stripe-pattern: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 8px,
    var(--black) 8px 16px
  );
  height: var(--stripe-h);
  background: var(--stripe-pattern);
  position: relative;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.taxi-stripe::before,
.taxi-stripe::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: none;
}
.taxi-stripe--top::before {
  top: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.06), transparent);
}
.taxi-stripe--bottom::after {
  bottom: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.05), transparent);
}
.taxi-stripe--section::before {
  top: 100%;
  height: 16px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
}
.taxi-stripe--section::after {
  bottom: 100%;
  height: 12px;
  background: linear-gradient(to top, rgba(255, 246, 220, 0.9), transparent);
}
.site-header .taxi-stripe--bottom::before {
  top: 100%;
  height: 14px;
  background: linear-gradient(to bottom, var(--cream) 0%, #FFF6DC 100%);
}
.site-footer .taxi-stripe--top::before {
  top: 100%;
  height: 14px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
}
.site-footer .taxi-stripe--bottom::before {
  top: 100%;
  height: 10px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--black) 100%);
}

/* ── Butonlar ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 12px 22px;
  border: 1.5px solid transparent;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 13px 22px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn .icon { width: 20px; height: 20px; }

.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: var(--wa-dark); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #2a2a2a; }

.btn-outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--black); }

.btn-outline-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(248, 247, 244, 0.97);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.header-actions .btn {
  padding: 10px 16px;
  font-size: 0.88rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}
.logo-text small { font-size: 0.7rem; color: var(--gray-400); }

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.header-actions { display: flex; gap: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* ── Mobil menü ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 72px 28px 28px;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a:not(.btn) {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 8px 0;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--black);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

/* ── Hero ── */
.hero {
  background: var(--yellow-hero);
  padding: 48px 0 40px;
}
.hero-inner {
  max-width: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--wa);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-accent { color: var(--yellow-dark); }
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-600);
  max-width: 58ch;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 620px;
}
.btn-hero {
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
  flex: 1 1 220px;
  min-width: 0;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}
.hero-tags .icon { width: 16px; height: 16px; color: var(--yellow-dark); }

/* ── İstatistik ── */
.stats-section {
  padding: 20px 0 44px;
  background: var(--white);
}
.stats-bar {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  box-shadow: var(--shadow);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ── Bölümler ── */
section { padding: 52px 0; }
.section-warm { background: var(--warm); }

.section-head { margin-bottom: 32px; }
.section-head.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-soft);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.65;
}
.section-head.center .section-desc { margin-inline: auto; }

/* ── Hizmet kartları ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.card-icon .icon { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── Neden biz ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.25s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--black);
}
.why-icon .icon { width: 22px; height: 22px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── Adımlar ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
  padding-left: 72px;
}
.step-num {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.85;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── Bölgeler ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-block;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.chip:hover {
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}
.chip--hot {
  background: var(--yellow-soft);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
}

/* ── SSS ── */
.faq-wrap { max-width: 700px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
}
.faq-q:hover { color: var(--yellow-dark); }
.faq-q.active { color: var(--yellow-dark); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-q.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0 4px;
  line-height: 1.65;
}
.faq-a.open { padding-bottom: 18px; }

/* ── Footer (navbar gibi şerit + bant) ── */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
}
.footer-main {
  background: var(--cream);
  padding: 44px 0;
}
.footer-cta {
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.footer-cta p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-bottom {
  background: var(--black);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-logo { font-weight: 600; color: rgba(255, 255, 255, 0.8); }

/* ── Mobil bar ── */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  height: var(--mobile-bar-h);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  height: 100%;
}
.mobile-bar-btn .icon { width: 18px; height: 18px; }
.mobile-bar-btn--wa { background: var(--wa); color: var(--white); }
.mobile-bar-btn--call { background: var(--yellow); color: var(--black); }

/* ── Animasyon ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  body { padding-bottom: var(--mobile-bar-h); }

  section { padding: 40px 0; }
  .nav-links,
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-bar { display: flex; }

  :root { --gutter: 20px; }

  .hero { padding: 32px 0 28px; }
  .hero-inner { max-width: none; }
  .hero h1 { font-size: 1.85rem; }
  .hero-lead { font-size: 1rem; max-width: none; margin-bottom: 22px; }
  .hero-cta {
    flex-direction: column;
    max-width: none;
    margin-bottom: 20px;
  }
  .btn-hero { flex: none; width: 100%; }

  .stats-section { padding: 16px 0 36px; }
  .stats-bar { padding: 16px 12px; border-radius: var(--radius); }

  .step-card { padding: 24px 20px 24px 68px; }
  .step-num {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
  }

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

  .footer-main { padding: 36px 0; }
  .footer-btns { flex-direction: column; align-items: stretch; }
  .footer-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-item strong { font-size: 1.25rem; }
  .stat-item span { font-size: 0.7rem; }
  .hero-tags li { flex: 1 1 calc(50% - 6px); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-badge .dot { animation: none; }
  .btn:hover { transform: none; }
}
