/* ==========================================================================
   Taksi Erzincan — Claude Design tema (Taksi uygulaması slider tasarımı mockup'ına göre)
   ========================================================================== */

:root {
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --ink: #14181F;
  --muted: #5B6472;
  --border: #E4E7EC;

  --accent: #F5A623;
  --accent-ink: #C9860F;
  --accent-soft: #FFF3DE;

  --dark: #14202E;
  --dark-surface: #1B2A3C;
  --dark-ink: rgba(255, 255, 255, .92);
  --dark-muted: rgba(255, 255, 255, .68);
  --dark-border: rgba(255, 255, 255, .1);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --space-1: 4px; --space-2: 8px; --space-3: 16px;
  --space-4: 24px; --space-5: 40px; --space-6: 64px; --space-7: 96px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 31, .06);
  --shadow-md: 0 2px 6px rgba(20, 24, 31, .05), 0 12px 32px -12px rgba(20, 24, 31, .12);
  --shadow-lg: 0 4px 12px rgba(20, 24, 31, .06), 0 24px 60px -20px rgba(20, 24, 31, .18);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; margin: 0 0 var(--space-3); }
p { margin: 0 0 var(--space-3); color: var(--muted); max-width: 65ch; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--accent); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 8px; }

/* ---------- Taksi şeridi ---------- */
.taxi-stripe { height: 10px; background: repeating-linear-gradient(45deg, var(--accent) 0 24px, var(--dark) 24px 48px); }

/* ---------- Buttons ---------- */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; white-space: nowrap;
  transition: all .25s var(--ease); border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--dark); box-shadow: 0 2px 6px rgba(245,166,35,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px -6px rgba(245,166,35,.6); }
.btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); color: #fff; font-weight: 600; }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.section .btn-ghost, .contact-card .btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); }
.section .btn-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 40px; background: rgba(247,248,250,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--dark);
  box-shadow: 0 2px 6px rgba(245,166,35,.35);
}
.brand__text-wrap { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--ink); }
.brand__sub { display: block; margin-top: 3px; font-size: 11px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }

.main-nav ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--ink); }
.main-nav a.is-active { font-weight: 700; color: var(--accent-ink); }
.main-nav a:hover { color: var(--accent-ink); }

/* Kurumsal dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink); padding: 6px 0;
}
.dropdown-toggle svg { transition: transform .2s var(--ease); }
.dropdown-toggle.is-active { font-weight: 700; color: var(--accent-ink); }
.has-dropdown:hover .dropdown-toggle, .has-dropdown.is-open .dropdown-toggle { color: var(--accent-ink); }
.has-dropdown.is-open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 200px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; list-style: none; margin: 10px 0 0;
  opacity: 0; visibility: hidden; pointer-events: none; transition: all .2s var(--ease); z-index: 60;
}
.has-dropdown:hover .dropdown-menu, .has-dropdown.is-open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.dropdown-menu li a:hover { background: var(--accent-soft); color: var(--accent-ink); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn-primary { padding: 11px 18px; font-size: 14px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); }

.mobile-nav { display: none; flex-direction: column; gap: 2px; background: var(--surface); border-top: 1px solid var(--border); padding: var(--space-2) 20px var(--space-4); }
.mobile-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav__call { color: var(--accent-ink) !important; font-weight: 700 !important; }
.mobile-nav__group { padding: 12px 4px 4px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mobile-nav__sub { padding-left: 16px !important; font-size: 13.5px !important; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .main-nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 14px 20px; }
}
@media (min-width: 901px) { .mobile-nav { display: none !important; } }

/* ---------- Hero carousel ---------- */
.hero-carousel { position: relative; padding: 40px 40px 8px; }
.hero-carousel__viewport { position: relative; overflow: hidden; }
.hero-carousel__track { display: flex; gap: 24px; transition: transform .6s var(--ease); will-change: transform; }
.hero-slide {
  position: relative; flex: 0 0 82%; height: 540px; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--dark) linear-gradient(135deg, var(--dark), var(--dark-surface));
}
.hero-slide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,32,46,.92) 0%, rgba(20,32,46,.6) 45%, rgba(20,32,46,.08) 80%); }
.hero-slide__body { position: absolute; left: 0; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; gap: 18px; max-width: 560px; padding: 0 56px; }
.hero-slide__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(245,166,35,.16); border: 1px solid rgba(245,166,35,.45); color: var(--accent); font-size: 12.5px; font-weight: 600; }
.hero-slide h1 { font-size: clamp(28px, 3.6vw, 50px); color: #fff; margin-bottom: 0; }
.hero-slide p { font-size: 16px; color: rgba(255,255,255,.82); max-width: 440px; margin-bottom: 0; }
.hero-slide__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.hero-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); color: var(--dark); font-size: 20px; cursor: pointer;
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; z-index: 5;
  transition: transform .2s var(--ease);
}
.hero-carousel__arrow:hover { transform: translateY(-50%) scale(1.06); }
.hero-carousel__arrow--prev { left: 18px; }
.hero-carousel__arrow--next { right: calc(18% + 18px); }
@media (max-width: 900px) { .hero-carousel__arrow--next { right: 18px; } }

.hero-carousel__dots { display: flex; justify-content: center; gap: 9px; padding: 22px 0 4px; }
.hero-carousel__dots button { height: 9px; border-radius: 999px; border: none; cursor: pointer; transition: all .3s var(--ease); background: #D3D8E0; width: 9px; }
.hero-carousel__dots button.is-active { width: 28px; background: var(--accent); }

@media (max-width: 900px) {
  .hero-carousel { padding: 20px 16px 4px; }
  .hero-slide { flex-basis: 100%; height: 460px; }
  .hero-slide__body { padding: 0 24px; max-width: 100%; }
}

/* ---------- Trust strip ---------- */
.trust-strip { padding: 8px 40px 8px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .trust-strip__grid { grid-template-columns: 1fr; } }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); }
.trust-item__icon { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: var(--space-6) 40px var(--space-5); }
@media (max-width: 700px) { .section { padding: var(--space-5) 20px; } }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { font-size: 34px; margin-bottom: 0; }
.section-head__lead { max-width: 340px; font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-bottom: 0; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; max-width: 640px; margin: 0 auto 28px; }

/* ---------- Hizmetler kartları ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.service-card { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--dark); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; margin-bottom: 0; }

/* Hizmetler sayfası: görselli kartlar */
.service-card--photo { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.service-card--photo .photo { position: relative; height: 170px; background: var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.service-card--photo .photo .badge-icon { position: absolute; top: 14px; left: 14px; width: 46px; height: 46px; border-radius: 12px; background: rgba(20,32,46,.9); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.service-card--photo .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-card--photo .body p { flex: 1; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 5px 11px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-ink); font-size: 12px; font-weight: 600; }

/* ---------- Dark blok / stats ---------- */
.dark-block { margin: var(--space-4) 40px; padding: 52px 48px; background: var(--dark); border-radius: var(--radius-xl); color: var(--dark-ink); position: relative; overflow: hidden; }
@media (max-width: 700px) { .dark-block { margin: var(--space-4) 20px; padding: 40px 24px; } }
.dark-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 90% 0%, rgba(245,166,35,.12), transparent 70%); }
.dark-block h2 { color: #fff; }
.dark-block .eyebrow { color: var(--accent); }
.dark-block > * { position: relative; z-index: 1; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; padding: 20px 12px; border-right: 1px solid var(--dark-border); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--accent); }
.stat-item span { font-size: 14px; color: var(--dark-muted); }

/* ---------- Galeri / Filomuz (bento) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
.gallery-grid .g-big { grid-column: span 2; grid-row: span 2; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; background: var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid .g-big { grid-column: span 2; grid-row: span 1; }
}

.gallery-more { display: flex; justify-content: center; margin-top: var(--space-4); }

/* ---------- Filomuz (tüm fotoğraflar) ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.fleet-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.fleet-item:hover img { transform: scale(1.1); }
.fleet-item__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px;
  background: linear-gradient(0deg, rgba(20,32,46,.85), transparent);
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: all .3s var(--ease);
}
.fleet-item:hover .fleet-item__caption { opacity: 1; transform: translateY(0); }

/* ---------- Statik sayfa içeriği (Sayfa modülü) ---------- */
.static-page-body { max-width: 800px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: var(--ink); }
.static-page-body p { color: var(--ink); max-width: none; }
.static-page-body h2, .static-page-body h3 { margin-top: var(--space-5); }
.static-page-body h2:first-child, .static-page-body h3:first-child { margin-top: 0; }
.static-page-body ul, .static-page-body ol { margin: 0 0 var(--space-3); padding-left: 22px; }
.static-page-body li { margin-bottom: 10px; color: var(--ink); }
.static-page-body strong { color: var(--ink); }

/* ---------- Gezilecek Yerler / spots ---------- */
.spots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .spots-grid { grid-template-columns: 1fr; } }
.spot-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.spot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot-card .photo { position: relative; height: 200px; background: var(--border); }
.spot-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.spot-card .tag { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(20,32,46,.85); color: var(--accent); font-size: 12px; font-weight: 600; backdrop-filter: blur(4px); }
.spot-card .dist { position: absolute; bottom: 14px; right: 14px; padding: 5px 11px; border-radius: 999px; background: var(--accent); color: var(--dark); font-size: 12px; font-weight: 700; }
.spot-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.spot-card .body p { flex: 1; }
.spot-card .cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 13.5px; color: var(--accent-ink); }

/* ---------- SSS ---------- */
.faq-split { display: grid; grid-template-columns: 340px 1fr; gap: 48px; }
@media (max-width: 900px) { .faq-split { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list--narrow { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); font-weight: 700; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-panel { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
@media (max-width: 900px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-panel__info { padding: 44px 40px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 9px 0; }
.contact-row .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-row .label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-row .value { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.contact-panel__map { min-height: 360px; background: var(--border); }
.contact-panel__map iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }

.quick-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .quick-tiles { grid-template-columns: 1fr; } }
.quick-tile { display: flex; align-items: center; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); }
.quick-tile .icon { width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.quick-tile .label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.quick-tile .value { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }

.contact-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
@media (max-width: 900px) { .contact-form-grid { grid-template-columns: 1fr; } }
.contact-form-card { padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-md); }
.form-row { display: flex; gap: 14px; }
@media (max-width: 500px) { .form-row { flex-direction: column; } }
.form-field { flex: 1; margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 11px;
  font-size: 14px; background: var(--bg); font-family: var(--font-body); resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,.2); }
.form-success { padding: 18px 20px; background: var(--accent-soft); border: 1px solid var(--accent); border-radius: 12px; color: var(--accent-ink); font-weight: 600; font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band { margin: 8px 40px 56px; padding: 44px 48px; background: var(--dark); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden; }
@media (max-width: 700px) { .cta-band { margin: 8px 20px 40px; padding: 32px 24px; } }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 220px at 10% 0%, rgba(245,166,35,.18), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 28px; margin-bottom: 4px; }
.cta-band p { color: var(--dark-muted); margin-bottom: 0; }
.cta-band--center { text-align: center; flex-direction: column; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Sub-page hero ---------- */
.page-hero { padding: 56px 40px 44px; background: var(--dark); color: #fff; }
@media (max-width: 700px) { .page-hero { padding: 40px 20px 32px; } }
.page-hero .crumb { font-size: 13px; color: var(--dark-muted); margin-bottom: 14px; }
.page-hero .crumb a { color: rgba(255,255,255,.75); }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); max-width: 720px; color: #fff; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.78); max-width: 560px; margin-top: 4px; margin-bottom: 0; }

/* ---------- Nasıl çalışır ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step-card .n { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--accent); margin-bottom: 12px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; margin-bottom: 0; }

/* ---------- Footer (amber) ---------- */
.site-footer { background: var(--accent); color: var(--dark); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 0 40px 36px; border-bottom: 1px solid rgba(20,32,46,.18); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; padding: 0 20px 28px; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand { display: flex; flex-direction: column; gap: 10px; }
.site-footer__brand .brand-row { display: flex; align-items: center; gap: 12px; }
.site-footer__brand .brand__mark { background: var(--dark); color: var(--accent); }
.site-footer__brand .brand__text { color: var(--dark); }
.site-footer__brand p { color: rgba(20,32,46,.72); font-size: 14px; max-width: 300px; margin-bottom: 0; }
.site-footer h3 { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer ul a, .site-footer ul li { color: rgba(20,32,46,.78); font-size: 14px; }
.site-footer ul a:hover { color: var(--dark); }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a { width: 38px; height: 38px; border-radius: 10px; background: var(--dark); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 14px; font-weight: 600; }

.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 40px 28px; flex-wrap: wrap; }
@media (max-width: 700px) { .site-footer__bottom { padding: 16px 20px 24px; } }
.site-footer__bottom span { font-size: 13px; color: rgba(20,32,46,.6); }
.credit-badge { display: flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 9px; background: var(--dark); font-size: 12.5px; color: rgba(255,255,255,.9); }
.credit-badge:hover { color: var(--accent); }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease); }
.fab-whatsapp:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
