/* ============================================================
   TURUNCU NAKLIYAT - On yuz stilleri (mobil oncelikli)
   Tasarim dili: "Modern kurumsal" — yumusak koseler, bol beyaz
   alan, ince tinted golgeler, sakin turuncu vurgu + lacivert metin.
   Plus Jakarta Sans (baslik) + Inter (govde).
   Marka: #ff6a00 turuncu, #10233f lacivert.
   ============================================================ */

:root {
  --accent: #ff6a00;
  --accent-dark: #e05e00;
  --accent-soft: #fff3ea;
  --accent-softer: #fff8f3;
  --accent-glow: rgba(255, 106, 0, .13);

  --ink: #10233f;                 /* lacivert baslik/koyu metin */
  --ink-2: #1c3557;
  --dark: #10233f;
  --dark-2: #16294a;
  --dark-3: #1d3a63;
  --on-dark-1: #eaf1fb;
  --on-dark-2: #b9c9de;
  --on-dark-3: #8ba3c2;
  --accent-on-dark: #ff9a52;
  --wa-soft: #74f0a6;

  --white: #ffffff;
  --bg: #f6f8fb;                  /* cok acik gri-mavi zemin */
  --bg-2: #eef2f7;
  --text: #33404f;
  --text-muted: #64748b;
  --border: #e7ecf3;
  --border-2: #dbe3ec;
  --green: #14a05a;
  --wa: #25d366;
  --wa-dark: #1eb658;
  --danger: #e2483d;

  --font-display: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Yumusak, marka tonuna boyanmis golgeler */
  --sh-hue: 16, 35, 63;
  --shadow-xs: 0 1px 2px rgba(var(--sh-hue), .06);
  --shadow-sm: 0 2px 8px rgba(var(--sh-hue), .06);
  --shadow: 0 6px 20px rgba(var(--sh-hue), .08);
  --shadow-md: 0 12px 32px rgba(var(--sh-hue), .10);
  --shadow-lg: 0 22px 50px rgba(var(--sh-hue), .14);
  --shadow-accent: 0 12px 26px rgba(255, 106, 0, .26);

  /* geriye uyum takma adlari */
  --dark-light: var(--dark-3);
  --dark-border: #294a72;
  --dark-border-2: #223e63;
  --shadow-card: var(--shadow-sm);
  --shadow-card-hover: var(--shadow-md);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.16;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.15rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.15rem; }

/* Erisilebilirlik */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.35rem; border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  border: 1.5px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .2s cubic-bezier(.22,.8,.35,1), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  min-height: 46px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--ink-2); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-xs); }
.btn-light:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-softer); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.26); }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c73a30; color: #fff; }
.btn-lg { padding: .9rem 1.7rem; font-size: 1.05rem; min-height: 52px; }
.btn-sm { padding: .5rem .95rem; font-size: .88rem; min-height: 40px; }
.btn-block { width: 100%; }

.fx-signal, .fx-call svg { animation: none; }

/* ---------- Animasyonlar ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Scroll-reveal: gorunume girince yumusakca yukselerek belirir */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.35,1); transition-delay: var(--reveal-delay, 0ms); }
  .reveal.revealed { opacity: 1; transform: none; }
  /* Gorseller: ek hafif olcekleme ile daha canli reveal */
  .media-split-img.reveal { transform: translateY(26px) scale(.96); }
  .media-split-img.reveal.revealed { transform: none; }

  /* Hero: sayfa acilinca icerik sirayla akar */
  .hero-content > * { animation: heroUp .75s cubic-bezier(.22,.8,.35,1) backwards; }
  .hero-content > .hero-eyebrow { animation-delay: .05s; }
  .hero-content > h1 { animation-delay: .14s; }
  .hero-content > .hero-sub { animation-delay: .24s; }
  .hero-content > .hero-actions { animation-delay: .34s; }
  .hero-content > .hero-badges { animation-delay: .44s; }
  .hero-card { animation: heroCard .85s cubic-bezier(.22,.8,.35,1) .28s backwards; }
  @keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  @keyframes heroCard { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }

  /* Marka ikonu hafif nefes alir */
  .brand-mark { animation: brandFloat 4.5s ease-in-out infinite; }
  @keyframes brandFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

  /* WhatsApp butonlari yumusak nabiz (donusum vurgusu) */
  .btn-wa, .mobile-bar-wa { position: relative; }
  .btn-wa::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s ease-out infinite; pointer-events: none; }
  @keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70%,100% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

  /* Ok/link mikro hareket (kart hover'da zaten gap animasyonu var) */
  .service-icon { transition: background .2s ease, color .2s ease, transform .25s cubic-bezier(.22,.8,.35,1); }
  a.service-card:hover .service-icon { transform: translateY(-3px) scale(1.06); }
  .step-no { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
  .step-card:hover .step-no { transform: scale(1.08) rotate(-4deg); }
}

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: var(--on-dark-2); font-size: .84rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: .5rem; min-height: 40px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .35rem; color: var(--on-dark-2); }
.topbar-item:hover { color: #fff; }
.topbar-item svg { color: var(--accent-on-dark); }
.topbar-wa { color: var(--wa-soft); }
.topbar-left { display: none; }
@media (min-width: 768px) { .topbar-left { display: flex; } }

/* ---------- Header ---------- */
.site-header { background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(140deg, var(--accent), #ff8c3d); color: #fff; box-shadow: var(--shadow-accent); }
.brand-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -.03em; }
.brand-text strong { color: var(--accent); font-weight: 800; }

.main-nav { display: none; }
.main-nav > ul { display: flex; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  padding: .55rem .85rem; border-radius: 10px; transition: color .18s ease, background .18s ease;
}
.main-nav > ul > li > a:hover { color: var(--accent-dark); background: var(--accent-softer); }
.main-nav > ul > li > a.active { color: var(--accent-dark); }
.main-nav a svg { opacity: .5; transition: transform .18s ease; }
.main-nav li.has-dropdown:hover a svg { transform: rotate(180deg); }

/* Acilir menu */
.main-nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 258px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: .5rem; border-radius: var(--radius);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 110;
}
.main-nav li.has-dropdown:hover .dropdown,
.main-nav li.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.main-nav .dropdown::before { content: ""; position: absolute; top: -6px; left: 24px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border); transform: rotate(45deg); }
.main-nav .dropdown a { display: block; padding: .58rem .8rem; color: var(--text); font-weight: 500; font-size: .92rem; border-radius: 9px; transition: background .15s ease, color .15s ease; }
.main-nav .dropdown a:hover { background: var(--accent-softer); color: var(--accent-dark); }
.main-nav .dropdown li:last-child a { color: var(--accent-dark); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-actions .btn span { display: none; }
.nav-toggle { background: #fff; border: 1px solid var(--border-2); border-radius: 11px; color: var(--ink); cursor: pointer; padding: .4rem; display: inline-flex; min-height: 46px; min-width: 46px; align-items: center; justify-content: center; }
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .btn span { display: inline; }
}
@media (max-width: 480px) {
  .header-inner { gap: .4rem; }
  .header-actions { gap: .35rem; }
  .brand-text { font-size: 1.12rem; }
  .brand-mark { width: 40px; height: 40px; }
  .header-actions .btn-sm { padding: .5rem .6rem; }
}

.mobile-nav { background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow); }
.mobile-nav ul { list-style: none; margin: 0; padding: .6rem 1.15rem 1.1rem; }
.mobile-nav > ul > li > a, .mobile-nav a { display: block; padding: .7rem .2rem; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--border); }
.mobile-nav a.active { color: var(--accent-dark); }
.mobile-nav .dropdown { list-style: none; padding: 0 0 .4rem .8rem; margin: 0; }
.mobile-nav .dropdown a { font-size: .92rem; font-weight: 500; color: var(--text-muted); border-bottom: none; padding: .38rem .2rem; }
.mobile-nav-cta { color: var(--accent-dark) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60rem 34rem at 82% -8%, var(--accent-glow), transparent 60%),
    radial-gradient(48rem 30rem at -6% 108%, rgba(16,35,63,.05), transparent 55%),
    linear-gradient(180deg, var(--accent-softer), var(--bg));
  padding: clamp(2.6rem, 5.5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-has-image { background-size: cover !important; background-position: center !important; }
.hero-has-image h1, .hero-has-image .hero-sub { color: #fff; }
.hero-inner { position: relative; display: grid; gap: 2.2rem; }
.hero h1 { margin-bottom: .7rem; }
.hero h1 mark, .hero h1 .h1-mark { background: none; color: var(--accent-dark); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; color: var(--accent-dark);
  font-family: var(--font-display); font-weight: 700; font-size: .84rem; letter-spacing: -.01em;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.15rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.hero-eyebrow svg { color: var(--accent); }
.hero-sub { font-size: 1.12rem; max-width: 560px; color: var(--text-muted); line-height: 1.65; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 0; font-size: .88rem; color: var(--ink); }
.hero-badges li { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .35rem .8rem; font-weight: 500; box-shadow: var(--shadow-xs); }
.hero-badges svg { color: var(--green); }

/* Hizli teklif karti */
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-lg); }
.hero-card h2 { font-size: 1.3rem; margin-bottom: .3rem; }
.hero-card > p { font-size: .93rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.quick-route-note { font-size: .82rem !important; line-height: 1.55; color: var(--text-muted); margin: 1.1rem 0 0 !important; padding-top: .9rem; border-top: 1px solid var(--border); }
.quick-route-note strong { color: var(--ink); }

@media (min-width: 920px) {
  .hero-inner { grid-template-columns: 1.35fr 1fr; align-items: center; gap: 3rem; }
}

/* ---------- Formlar ---------- */
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.form-row label, .label-text { font-weight: 600; font-size: .9rem; color: var(--ink); }
.req { color: var(--danger); }
.opt { color: var(--text-muted); font-weight: 400; font-size: .82rem; }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
input[type="number"], input[type="password"], input[type="url"], input[type="search"],
input[type="file"], input[type="datetime-local"], select, textarea {
  width: 100%; padding: .72rem .9rem; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid var(--border-2); border-radius: var(--radius-sm); background: #fff; color: var(--text);
  min-height: 48px; transition: border-color .16s ease, box-shadow .16s ease;
}
textarea { min-height: auto; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 4px var(--accent-glow); }

.form-grid-2, .form-grid-3 { display: grid; gap: 0 1rem; }
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.check-label { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; cursor: pointer; font-weight: 500; }
.check-label input { width: 19px; height: 19px; margin-top: .15rem; flex: none; accent-color: var(--accent); min-height: auto; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .55rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.form-row-check { justify-content: center; }
.field-error { color: var(--danger); font-size: .85rem; margin: .2rem 0 0; font-weight: 600; }
.field-error::before { content: "⚠ "; }
.field-hint { color: var(--text-muted); font-size: .82rem; margin: .2rem 0 0; }

.alert { padding: .95rem 1.15rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: .95rem; border: 1px solid; }
.alert ul { margin: .4rem 0 0 1.2rem; padding: 0; }
.alert-success { background: #e8f7ee; color: #0f5132; border-color: #a9dcbf; display: flex; gap: .5rem; align-items: center; }
.alert-error { background: #fdeceb; color: #842029; border-color: #f3b7b3; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Bolumler ---------- */
.section { padding: clamp(3.2rem, 7vw, 5.2rem) 0; }
.section-alt { background: var(--bg); }
.section-title { text-align: center; margin-bottom: .5rem; }
.section-title::after { content: ""; display: block; width: 52px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #ff9a52); margin: .7rem auto 0; }
.section-title-left { text-align: left; margin: 1.5rem 0 1rem; }
.section-title-left::after { margin-left: 0; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 660px; margin: 0 auto 2.6rem; font-size: 1.04rem; text-wrap: balance; }
.section-sub strong { color: var(--ink); font-weight: 600; }
.section-more { text-align: center; margin-top: 2.4rem; }

.card-grid { display: grid; gap: 1.3rem; }
@media (min-width: 640px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Kartlar */
.service-card, .route-card, .feature-card, .step-card, .vehicle-card,
.announcement-card, .review-card, .post-card, .location-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.45rem; color: var(--text);
  display: flex; flex-direction: column; gap: .45rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.22,.8,.35,1), box-shadow .22s ease, border-color .18s ease;
}
a.service-card:hover, a.route-card:hover, a.post-card:hover, a.location-card:hover {
  color: var(--text); transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-2);
}
.feature-card:hover, .vehicle-card:hover, .announcement-card:hover, .review-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}

.service-icon, .feature-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 15px; background: var(--accent-soft); color: var(--accent-dark); margin-bottom: .35rem; transition: background .2s ease, color .2s ease; }
a.service-card:hover .service-icon { background: var(--accent); color: #fff; }
.card-link { color: var(--accent-dark); font-family: var(--font-display); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; transition: gap .18s ease; }
a:hover > .card-link { gap: .6rem; }
.card-title-h3 { font-size: 1.15rem; }

.route-card { position: relative; }
.route-cities { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.16rem; letter-spacing: -.02em; }
.route-cities svg { color: var(--accent); flex: none; }
.route-arrow { color: var(--accent); font-weight: 400; }
.route-time { display: inline-flex; align-items: center; gap: .35rem; color: var(--text-muted); font-size: .86rem; font-variant-numeric: tabular-nums; }

/* Surec adimlari */
.steps-grid { display: grid; gap: 1.3rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { position: relative; overflow: hidden; }
.step-no { display: inline-flex; width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-display); font-weight: 800; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: .5rem; }

.vehicle-card img { border-radius: var(--radius-sm); object-fit: cover; }
.vehicle-icon { display: inline-flex; width: 68px; height: 68px; border-radius: 18px; background: var(--accent-soft); color: var(--accent-dark); align-items: center; justify-content: center; }
.vehicle-capacity { color: var(--accent-dark); font-weight: 700; font-size: .9rem; margin: 0; font-variant-numeric: tabular-nums; }

.announcement-head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; flex-wrap: wrap; }
.announcement-badge { display: inline-flex; align-items: center; gap: .35rem; background: var(--accent-soft); color: var(--accent-dark); font-weight: 700; font-size: .8rem; padding: .28rem .7rem; border-radius: 999px; }
.announcement-date { color: var(--text-muted); font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.announcement-route { display: flex; align-items: center; gap: .4rem; color: var(--ink); font-weight: 600; margin: 0; }
.announcement-card .btn { align-self: flex-start; margin-top: .5rem; }

.review-card { margin: 0; gap: .7rem; }
.review-stars { color: var(--accent); display: flex; gap: 2px; }
.review-card > p { font-size: 1rem; color: var(--text); line-height: 1.65; }
.review-card footer { margin-top: auto; display: flex; flex-direction: column; font-size: .85rem; padding-top: .6rem; border-top: 1px solid var(--border); }
.review-card footer strong { color: var(--ink); font-family: var(--font-display); }
.review-card footer span { color: var(--text-muted); }

.post-card { padding: 0; overflow: hidden; }
.post-card img { width: 100%; object-fit: cover; aspect-ratio: 16/10; }
.post-card-body { padding: 1.25rem 1.4rem 1.45rem; display: flex; flex-direction: column; gap: .4rem; }
.post-card time { color: var(--text-muted); font-size: .82rem; font-variant-numeric: tabular-nums; }
.post-cat { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); font-size: .78rem; font-weight: 700; padding: .18rem .65rem; border-radius: 999px; align-self: flex-start; }

.location-card { flex-direction: row; align-items: center; gap: .65rem; font-weight: 600; color: var(--ink); padding: 1.05rem 1.2rem; }
.location-card svg { color: var(--accent); flex: none; }

.trust-band { display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .trust-band { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow-sm); }
.trust-item svg { color: var(--accent); flex: none; margin-top: .15rem; }
.trust-item h3 { margin-bottom: .3rem; font-size: 1.1rem; }
.trust-item p { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* SSS */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .7rem; background: #fff; box-shadow: var(--shadow-xs); transition: box-shadow .18s ease, border-color .18s ease; }
.faq-item[open] { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 1.05rem 1.3rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; position: relative; padding-right: 2.8rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--accent-dark); background: var(--accent-soft); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border-radius: 8px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.faq-item[open] summary::after { content: "−"; background: var(--accent); color: #fff; transform: translateY(-50%) rotate(180deg); }
.faq-answer { padding: 0 1.3rem 1.15rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(40rem 22rem at 100% 120%, rgba(255,106,0,.22), transparent 60%), linear-gradient(135deg, var(--ink), var(--dark-3));
  color: #fff; padding: clamp(2.8rem, 5.5vw, 3.8rem) 0;
}
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { margin: 0; color: var(--on-dark-2); }
.cta-band-inner { position: relative; display: flex; flex-direction: column; gap: 1.4rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cta-band .btn-dark { background: #fff; color: var(--ink); }
.cta-band .btn-dark:hover { background: var(--accent-soft); color: var(--ink); }
@media (min-width: 900px) { .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Sayfa duzenleri ---------- */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); font-size: .84rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: .7rem 0; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .35rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 600; }

.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(44rem 26rem at 100% -20%, rgba(255,106,0,.16), transparent 55%), linear-gradient(135deg, var(--ink), var(--dark-2));
  color: var(--on-dark-2); padding: 2.9rem 0 3.1rem;
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero-slim { padding: 2.1rem 0 2.3rem; }
.page-lead { font-size: 1.08rem; max-width: 720px; color: var(--on-dark-2); line-height: 1.65; }
.page-hero a { color: var(--accent-on-dark); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.route-badge { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.1); color: var(--accent-on-dark); font-family: var(--font-display); font-weight: 700; padding: .35rem .85rem; border-radius: 999px; margin-bottom: .9rem; border: 1px solid rgba(255,255,255,.12); }
.route-facts { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.route-fact { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--on-dark-1); font-variant-numeric: tabular-nums; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: .38rem .8rem; }
.route-fact svg { color: var(--accent-on-dark); }
.route-fact strong { color: #fff; }

.page-layout { display: grid; gap: 2.2rem; padding: 2.8rem 0; }
@media (min-width: 960px) { .page-layout { grid-template-columns: 1fr 330px; align-items: start; } }
.page-narrow { max-width: 800px; margin: 0 auto; padding: 2.2rem 0; }

.content-block { margin-top: 2rem; }
.prose { color: var(--text); max-width: 72ch; font-size: 1.04rem; line-height: 1.75; }
.prose h2 { margin-top: 1.7em; font-size: 1.55rem; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--border); padding: .6rem .8rem; text-align: left; font-size: .92rem; }
.prose th { background: var(--bg); }
.prose a { text-decoration: underline; text-decoration-color: var(--accent-soft); text-underline-offset: 3px; }

.page-side { display: flex; flex-direction: column; gap: 1.3rem; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.side-card h2 { font-size: 1.12rem; margin-bottom: .8rem; }
.side-card-cta { background: linear-gradient(135deg, var(--ink), var(--dark-3)); border: none; color: var(--on-dark-2); }
.side-card-cta h2 { color: #fff; }
.side-card-cta .btn { margin-top: .5rem; }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { border-bottom: 1px solid var(--border); }
.side-links li:last-child { border-bottom: none; }
.side-links a { display: block; padding: .6rem 0; color: var(--text); font-size: .92rem; font-weight: 500; }
.side-links a:hover { color: var(--accent-dark); }
.side-card-map iframe { border-radius: var(--radius-sm); }

.post-cover { border-radius: var(--radius-lg); margin-bottom: 1.6rem; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.post-meta { color: var(--text-muted); font-size: .88rem; font-variant-numeric: tabular-nums; }

.blog-categories { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.blog-categories a { padding: .45rem 1rem; border: 1.5px solid var(--border-2); border-radius: 999px; color: var(--text); font-weight: 600; font-size: .88rem; transition: all .16s ease; }
.blog-categories a.active, .blog-categories a:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-softer); }

.pagination { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; margin-top: 2.2rem; }
.pagination a, .pagination .page-current { display: inline-flex; min-width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.pagination a { border: 1.5px solid var(--border-2); color: var(--text); }
.pagination a:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination .page-current { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }

.empty-note { text-align: center; color: var(--text-muted); padding: 2rem 0; }

/* ---------- Teklif formu ---------- */
.quote-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow-md); }
.quote-form fieldset { border: none; margin: 0; padding: 0; }
.quote-form legend { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 1.3rem; padding: 0; letter-spacing: -.02em; }

.form-steps { display: flex; justify-content: space-between; list-style: none; margin: 0 0 1.9rem; padding: 0; position: relative; }
.form-steps::before { content: ""; position: absolute; top: 17px; left: 8%; right: 8%; height: 2px; background: var(--border-2); z-index: 0; }
.form-steps li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .35rem; font-size: .72rem; color: var(--text-muted); flex: 1; text-align: center; }
.form-steps li::before { content: attr(data-step-label); display: flex; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--border-2); align-items: center; justify-content: center; font-weight: 800; color: var(--text-muted); font-family: var(--font-display); }
.form-steps li.active { color: var(--accent-dark); font-weight: 700; }
.form-steps li.active::before { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.form-steps li.done::before { background: var(--green); border-color: var(--green); color: #fff; content: "✓"; }

.step-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.step-nav .btn:only-child { margin-left: auto; }
.photo-list { list-style: none; margin: .6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; font-size: .85rem; color: var(--text-muted); }
.form-consents { gap: .7rem; }

.thanks-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem 1.7rem; text-align: center; box-shadow: var(--shadow-md); }
.thanks-icon { display: inline-flex; width: 80px; height: 80px; border-radius: 50%; background: #e8f7ee; color: var(--green); align-items: center; justify-content: center; margin-bottom: 1rem; }
.thanks-code { font-size: 1.12rem; }
.thanks-code strong { color: var(--accent-dark); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.thanks-summary { text-align: left; background: var(--bg); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin: 1.6rem 0; }
.thanks-summary h2 { font-size: 1.08rem; margin-bottom: .8rem; }
.thanks-summary dl { margin: 0; }
.thanks-summary dl > div { display: flex; flex-direction: column; padding: .45rem 0; border-bottom: 1px solid var(--border); }
.thanks-summary dl > div:last-child { border-bottom: none; }
.thanks-summary dt { font-weight: 700; font-size: .82rem; color: var(--text-muted); }
.thanks-summary dd { margin: 0; }
.thanks-actions { display: flex; flex-direction: column; gap: .7rem; }
@media (min-width: 640px) {
  .thanks-summary dl > div { flex-direction: row; gap: 1rem; }
  .thanks-summary dt { width: 150px; flex: none; }
  .thanks-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-3); margin-bottom: 64px; }
.footer-grid { display: grid; gap: 2.2rem; padding: 3.4rem 1.15rem 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; margin-bottom: 0; } }
.footer-brand { font-family: var(--font-display); font-size: 1.35rem; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.footer-brand strong { color: var(--accent-on-dark); }
.footer-title { font-family: var(--font-display); font-size: .82rem; color: #fff; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--on-dark-3); font-size: .92rem; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: .55rem; }
.footer-contact svg { color: var(--accent-on-dark); flex: none; margin-top: .2rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.footer-social a { color: var(--on-dark-2); font-size: .88rem; border: 1px solid var(--dark-border); border-radius: 999px; padding: .3rem .85rem; transition: all .15s ease; }
.footer-social a:hover { border-color: var(--accent); color: #fff; background: rgba(255,106,0,.12); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; font-size: .82rem; }
.footer-bottom p { margin: 0; }
@media (min-width: 1024px) { .site-footer { margin-bottom: 0; } }

/* ---------- Mobil sabit bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; gap: .5rem; padding: .5rem .6rem; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); z-index: 90; box-shadow: 0 -4px 20px rgba(var(--sh-hue), .1); }
.mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .7rem .3rem; border-radius: 12px; font-family: var(--font-display); font-size: .86rem; font-weight: 700; min-height: 50px; }
.mobile-bar-phone { color: var(--ink); background: var(--bg); }
.mobile-bar-wa { color: #fff; background: var(--wa); }
.mobile-bar-quote { color: #fff; background: var(--accent); }
@media (min-width: 1024px) { .mobile-bar { display: none; } }

/* ---------- Cerez bildirimi ---------- */
.cookie-notice { position: fixed; bottom: 76px; left: 1rem; right: 1rem; background: #fff; color: var(--text); border: 1px solid var(--border); padding: 1.1rem 1.3rem; border-radius: var(--radius); z-index: 95; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }
.cookie-notice[hidden] { display: none !important; }
.cookie-notice p { margin: 0; }
.cookie-notice a { color: var(--accent-dark); }
.cookie-notice .btn { align-self: flex-start; }
@media (min-width: 768px) { .cookie-notice { left: auto; right: 1.5rem; max-width: 430px; bottom: 1.5rem; } }

/* ---------- Hata sayfalari ---------- */
.error-body { background: var(--bg); display: flex; align-items: center; justify-content: center; min-height: 100dvh; margin: 0; }
.error-page { text-align: center; padding: 3rem 1.5rem; max-width: 500px; }
.error-code { font-family: var(--font-display); font-size: 5.5rem; font-weight: 800; color: var(--accent); margin: 0 0 .5rem; line-height: 1; letter-spacing: -.04em; }
.error-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }

/* ---------- Galeri ---------- */
.gallery-cat { padding: 0; overflow: hidden; }
.gallery-cat-img { position: relative; aspect-ratio: 4/3; background: var(--bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gallery-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-cat:hover .gallery-cat-img img { transform: scale(1.06); }
.gallery-cat-placeholder { color: var(--accent); opacity: .45; }
.gallery-cat-count { position: absolute; bottom: .7rem; right: .7rem; background: rgba(16,35,63,.85); color: #fff; font-size: .75rem; font-weight: 700; padding: .22rem .65rem; border-radius: 999px; font-variant-numeric: tabular-nums; }
.gallery-cat h2 { padding: 1.1rem 1.3rem 0; font-size: 1.18rem; }
.gallery-cat p { padding: 0 1.3rem 1.3rem; margin: .3rem 0 0; font-size: .9rem; color: var(--text-muted); }

.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .9rem; }
@media (min-width: 640px) { .photo-gallery { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }
.photo-gallery-item { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; box-shadow: var(--shadow-xs); }
.photo-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-gallery-item:hover img { transform: scale(1.07); }

.lightbox { position: fixed; inset: 0; background: rgba(16,35,63,.92); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: #fff; margin-top: 1rem; font-size: .95rem; text-align: center; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; }

/* ---------- Fiyatlandirma ---------- */
.pricing-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.9rem 1.6rem; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card-popular { border-color: var(--accent); box-shadow: var(--shadow-md); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-display); font-size: .78rem; font-weight: 800; padding: .32rem .95rem; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-accent); }
.pricing-title { font-size: 1.3rem; margin-bottom: .2rem; }
.pricing-subtitle { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.pricing-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--ink); margin-bottom: 1.3rem; line-height: 1.1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.pricing-price span { display: block; font-size: .82rem; font-weight: 600; color: var(--text-muted); font-family: var(--font-body); letter-spacing: 0; }
.pricing-features { list-style: none; margin: 0 0 1.6rem; padding: 0; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .5rem; padding: .48rem 0; font-size: .92rem; border-bottom: 1px solid var(--border); }
.pricing-features svg { color: var(--green); flex: none; margin-top: .15rem; }
.pricing-feature-off { color: var(--text-muted); text-decoration: line-through; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: .88rem; margin-top: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Gorselli bolumler (ana sayfa) ---------- */
.media-split { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 900px) {
  .media-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .media-split.media-right .media-split-img { order: 2; }
}
.media-split-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; background: #fff; }
.media-split-img img { display: block; width: 100%; height: auto; }
.media-split h2 { text-align: left; }
.media-split h2::after { display: none; }
.media-split > div > p { color: var(--text-muted); font-size: 1.05rem; }
.media-split ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.media-split ul li { padding: .4rem 0 .4rem 1.9rem; position: relative; font-weight: 500; color: var(--text); }
.media-split ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 20px; height: 20px; background: var(--accent-soft); border-radius: 50%; }
.media-split ul li::after { content: ""; position: absolute; left: 6px; top: .82em; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

/* Tasidigimiz esya turleri: rozet bulutu */
.item-tags { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.item-tag { display: inline-flex; align-items: center; gap: .45rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .5rem .95rem; font-weight: 600; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-xs); transition: transform .18s ease, box-shadow .18s ease; }
.item-tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.item-tag svg { color: var(--accent); }

/* Bolge etiketleri */
.area-tags { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.area-tags a { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .5rem .95rem; font-weight: 600; font-size: .92rem; color: var(--text); box-shadow: var(--shadow-xs); transition: all .16s ease; }
.area-tags a:hover { border-color: var(--accent); background: var(--accent-softer); color: var(--accent-dark); transform: translateY(-2px); }
.area-tags a svg { color: var(--accent); }

/* Yazdirma */
@media print {
  .topbar, .site-header, .mobile-bar, .cookie-notice, .cta-band, .site-footer { display: none !important; }
}
