/* HesaplıRota - Kullanıcı Arayüzü Stilleri */

:root {
  --ocean-50:#EAF6FB; --ocean-100:#C4E5F1; --ocean-300:#6FBED9;
  --ocean-500:#2E91B8; --ocean-700:#1A6485; --ocean-900:#0D3D55;
  --sunset-50:#FFF1E4; --sunset-100:#FFD9B5; --sunset-300:#FFA85C;
  --sunset-500:#F77F1E; --sunset-700:#C25A0A;
  --turquoise-50:#E0F7F4; --turquoise-300:#5FD4C4;
  --turquoise-500:#14B8A6; --turquoise-700:#0E8F80;
  --leaf-50:#ECF8E0; --leaf-300:#A8D87A;
  --leaf-500:#6FB23A; --leaf-700:#4F8222;
  --pink-50:#FFE9F1; --pink-300:#FF8FB8;
  --pink-500:#EC4F8A; --pink-700:#B82A66;
  --sky-bg:#F0F8FC; --sky-cloud:#F8FCFE;
  --ink-900:#0F2935; --ink-700:#2D4A5A;
  --ink-500:#5A7484; --ink-300:#8FA3B0;
  --white:#FFFFFF;
  --radius-sm:8px; --radius-md:12px; --radius-lg:20px; --radius-xl:28px;
  --font-sans:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm:0 1px 2px rgba(13,61,85,0.06);
  --shadow-md:0 4px 16px rgba(13,61,85,0.08);
  --shadow-lg:0 12px 40px rgba(13,61,85,0.10);
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--sky-bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(20,184,166,0.06) 0%, transparent 35%),
    radial-gradient(circle at 88% 75%, rgba(247,127,30,0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(236,79,138,0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

a { color: var(--ocean-700); text-decoration: none; }
a:hover { color: var(--ocean-900); }

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

button { font-family: var(--font-sans); cursor: pointer; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  position: relative;
}

/* ===== DEKORATİF İKONLAR ===== */
.deco-icon { position: absolute; pointer-events: none; opacity: 0.18; user-select: none; }
.deco-1 { top: 60px; right: 40px; font-size: 48px; color: var(--sunset-500); transform: rotate(15deg); }
.deco-2 { top: 280px; left: 20px; font-size: 36px; color: var(--turquoise-500); transform: rotate(-20deg); }
.deco-3 { top: 540px; right: 30px; font-size: 42px; color: var(--leaf-500); transform: rotate(10deg); }
.deco-4 { top: 820px; left: 30px; font-size: 38px; color: var(--pink-500); transform: rotate(-15deg); }

/* ===== HEADER ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean-500) 0%, var(--turquoise-500) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  box-shadow: 0 4px 14px rgba(46,145,184,0.3);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; top: -4px; right: -4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--sunset-500); border: 2px solid var(--sky-bg);
}
.logo-text h1 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ocean-900);
}
.logo-text p { font-size: 12px; color: var(--ink-500); margin-top: -2px; font-weight: 500; }

.header-nav { display: flex; gap: 6px; font-size: 14px; align-items: center; }
.header-nav a {
  color: var(--ink-700); text-decoration: none; padding: 9px 14px;
  border-radius: var(--radius-sm); transition: all 0.2s; font-weight: 500;
}
.header-nav a:hover, .header-nav a.active {
  background: var(--white); color: var(--ocean-700);
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: var(--white); color: var(--ocean-700);
  border-radius: 100px; font-size: 12px; font-weight: 600;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--ocean-100);
}
.hero-eyebrow i { color: var(--sunset-500); font-size: 14px; }
.hero h2 {
  font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ocean-900); margin-bottom: 16px;
}
.hero h2 .accent-1 { color: var(--sunset-500); position: relative; display: inline-block; }
.hero h2 .accent-1::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 6px; background: var(--sunset-100); z-index: -1; border-radius: 4px;
}
.hero p {
  font-size: 17px; color: var(--ink-500); max-width: 560px;
  margin: 0 auto; line-height: 1.6;
}

/* ===== CARD ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ocean-50);
}
.card-elevated { box-shadow: var(--shadow-lg); }
.card-feature { position: relative; overflow: hidden; }
.card-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ocean-500) 0%, var(--turquoise-500) 33%, var(--leaf-500) 50%, var(--sunset-500) 75%, var(--pink-500) 100%);
}

/* ===== FORM ===== */
.field { margin-bottom: 16px; }
.field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--ink-500);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em;
}
.field label i { font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--ocean-50); border-radius: var(--radius-md);
  font-size: 14px; font-family: var(--font-sans);
  color: var(--ink-900); background: var(--sky-bg);
  transition: all 0.2s; font-weight: 500;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,145,184,0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.field-hint { font-size: 11px; color: var(--ink-500); margin-top: 4px; }

/* Hata mesajları */
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--pink-500);
}
.field-error {
  font-size: 12px; color: var(--pink-500);
  margin-top: 4px; font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 18px; border: none; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; font-family: var(--font-sans);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sunset-500) 0%, var(--pink-500) 100%);
  color: var(--white); box-shadow: 0 4px 14px rgba(247,127,30,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px); box-shadow: 0 8px 20px rgba(247,127,30,0.4);
}
.btn-primary:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}
.btn-secondary {
  background: var(--white); color: var(--ink-900);
  border: 1.5px solid var(--ocean-50);
}
.btn-secondary:hover { border-color: var(--ocean-300); background: var(--ocean-50); }
.btn-success {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-success:hover { transform: translateY(-1px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 24px; font-size: 15px; }

/* ===== ANA SAYFA: Hesaplama formu ===== */
.destination-picker { position: relative; }
.destination-input-wrap { position: relative; }
.destination-search-input {
  width: 100%; padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--ocean-50); border-radius: var(--radius-md);
  font-size: 14px; font-family: var(--font-sans); color: var(--ink-900);
  background: var(--sky-bg); font-weight: 500;
}
.destination-search-input:focus {
  outline: none; border-color: var(--ocean-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,145,184,0.12);
}
.destination-input-wrap > i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--pink-500); font-size: 18px;
}
.map-trigger-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  padding: 6px 12px; background: var(--ocean-900); color: var(--white);
  border: none; border-radius: 8px; font-size: 11px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
}
.map-trigger-btn:hover { background: var(--ocean-700); }

/* Geocoding sonuçları dropdown */
.search-results {
  position: absolute; top: 100%; left: 0; right: 0;
  background: white; border: 1px solid var(--ocean-50); border-radius: var(--radius-md);
  margin-top: 4px; max-height: 280px; overflow-y: auto; z-index: 50;
  box-shadow: var(--shadow-lg); display: none;
}
.search-results.open { display: block; }
.search-result-item {
  padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--ocean-50); font-size: 13px;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--sky-bg); }
.search-result-item i { color: var(--pink-500); font-size: 16px; }
.search-result-name { flex: 1; font-weight: 600; color: var(--ocean-900); }
.search-result-place { font-size: 11px; color: var(--ink-500); }

/* Popüler tatil noktaları */
.popular-destinations {
  margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px;
}
.pop-dest-btn {
  padding: 6px 12px; background: var(--white);
  border: 1px solid var(--ocean-50); border-radius: 100px;
  font-size: 12px; color: var(--ink-700); cursor: pointer;
  font-weight: 500; font-family: var(--font-sans);
  display: inline-flex; align-items: center; gap: 4px;
  transition: all 0.2s;
}
.pop-dest-btn:hover {
  border-color: var(--sunset-300); background: var(--sunset-50);
  color: var(--sunset-700);
}
.pop-dest-btn.selected {
  background: var(--sunset-500); color: white; border-color: var(--sunset-500);
}
.pop-dest-btn .emoji { font-size: 14px; }

/* Tüketim row */
.consumption-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--turquoise-50) 0%, var(--ocean-50) 100%);
  border-radius: var(--radius-md); margin-bottom: 20px;
}
.consumption-row .drop-icon {
  width: 32px; height: 32px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--turquoise-500); font-size: 16px;
}
.consumption-row .label-text {
  font-size: 13px; color: var(--ocean-900); flex: 1; font-weight: 500;
}
.consumption-row input {
  width: 80px; text-align: right; padding: 8px 10px;
  border: 1.5px solid var(--ocean-100); border-radius: 8px;
  background: var(--white); font-size: 14px; font-weight: 600;
  color: var(--ink-900); font-family: var(--font-sans);
}
.consumption-row .unit { font-size: 12px; color: var(--ink-500); font-weight: 500; }

.calc-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--sunset-500) 0%, var(--pink-500) 100%);
  color: var(--white); border: none; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700; font-family: var(--font-sans);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(247,127,30,0.35);
  letter-spacing: -0.01em;
}
.calc-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,127,30,0.45);
}
.calc-btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

.not-in-list {
  text-align: center; margin-top: 12px; font-size: 12px; color: var(--ink-500);
}
.not-in-list a { color: var(--ocean-700); font-weight: 600; }

/* "Yeni" badge */
.ev-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; background: var(--leaf-50); color: var(--leaf-700);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  margin-left: 8px;
}

/* ===== SONUÇ SAYFASI ===== */
.route-summary {
  background: linear-gradient(135deg, var(--ocean-700) 0%, var(--ocean-900) 100%);
  color: white; padding: 24px; border-radius: var(--radius-lg);
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.route-summary::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--sunset-500), var(--pink-500));
  border-radius: 50%; opacity: 0.2;
}
.route-summary-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.route-summary-top .from-to { font-size: 18px; font-weight: 700; }
.route-summary-top .from-to .arrow { color: var(--sunset-300); margin: 0 8px; }
.route-summary-meta {
  display: flex; gap: 20px; font-size: 13px; color: var(--ocean-100);
  position: relative; z-index: 1; flex-wrap: wrap;
}
.route-summary-meta i { font-size: 14px; vertical-align: middle; }

/* Metrics */
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.metric {
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ocean-50);
}
.metric-icon-bg {
  position: absolute; top: -10px; right: -10px;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.18; font-size: 28px;
}
.metric.m-distance .metric-icon-bg { background: var(--ocean-100); color: var(--ocean-700); }
.metric.m-duration .metric-icon-bg { background: var(--turquoise-50); color: var(--turquoise-700); }
.metric.m-fuel .metric-icon-bg { background: var(--leaf-50); color: var(--leaf-700); }
.metric.primary {
  background: linear-gradient(135deg, var(--sunset-500) 0%, var(--pink-500) 100%);
  border: none; color: white;
}
.metric-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-500); margin-bottom: 6px; font-weight: 700;
  position: relative; z-index: 1;
}
.metric.primary .metric-label { color: rgba(255,255,255,0.85); }
.metric-value {
  font-size: 26px; font-weight: 700; color: var(--ocean-900);
  letter-spacing: -0.02em; position: relative; z-index: 1;
}
.metric.primary .metric-value { color: white; }
.metric-sub { font-size: 11px; color: var(--ink-500); margin-top: 4px; }
.metric.primary .metric-sub { color: rgba(255,255,255,0.8); }

/* Harita */
.map-container {
  height: 360px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--ocean-50);
  margin-bottom: 24px; position: relative;
  background: linear-gradient(180deg, #DEF1F8 0%, var(--sky-bg) 100%);
}
.map-container .map-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ocean-700); font-weight: 600;
}

/* Map fallback (Mapbox token yoksa) */
.map-fallback {
  height: 280px; background: linear-gradient(180deg, #DEF1F8 0%, var(--sky-bg) 100%);
  border-radius: var(--radius-lg); border: 1px solid var(--ocean-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 24px; padding: 20px; text-align: center;
}
.map-fallback i { font-size: 48px; color: var(--ocean-300); margin-bottom: 12px; }
.map-fallback p { color: var(--ink-500); max-width: 360px; }

/* Action buttons row */
.actions-row {
  display: flex; gap: 10px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--ocean-50);
  flex-wrap: wrap;
}
.action-btn {
  flex: 1; padding: 14px; min-width: 140px;
  background: var(--white); border: 1.5px solid var(--ocean-50);
  border-radius: var(--radius-md); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-900);
  font-family: var(--font-sans); transition: all 0.2s;
  text-decoration: none;
}
.action-btn:hover {
  border-color: var(--ocean-500); background: var(--ocean-50);
  transform: translateY(-1px);
}
.action-btn.primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.action-btn i { font-size: 18px; }

/* Section label */
.section-label {
  font-size: 14px; font-weight: 700; color: var(--ocean-900);
  margin-bottom: 12px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.section-label .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sunset-500);
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
}
.pill-ocean { background: var(--ocean-50); color: var(--ocean-700); }
.pill-sunset { background: var(--sunset-50); color: var(--sunset-700); }
.pill-turquoise { background: var(--turquoise-50); color: var(--turquoise-700); }
.pill-leaf { background: var(--leaf-50); color: var(--leaf-700); }
.pill-pink { background: var(--pink-50); color: var(--pink-700); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,41,53,0.5); backdrop-filter: blur(4px);
  z-index: 100; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: pop 0.25s ease;
}
.modal-lg { max-width: 720px; }
.modal-xl { max-width: 900px; padding: 0; overflow: hidden; }
@keyframes pop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal h3 {
  font-size: 20px; color: var(--ocean-900); margin-bottom: 12px;
  font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.modal-close-btn {
  background: none; border: none; cursor: pointer;
  color: var(--ink-500); font-size: 22px; padding: 4px;
}

/* Map modal */
.map-modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--ocean-50);
  display: flex; align-items: center; justify-content: space-between;
}
.map-modal-header h3 { margin: 0; }
.map-search-bar {
  padding: 16px 24px; background: var(--sky-bg);
  border-bottom: 1px solid var(--ocean-50);
}
.map-search-bar input {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--white); border-radius: var(--radius-md);
  font-size: 14px; font-family: var(--font-sans);
  background: white url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A7484' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 14px center;
}
#destinationMap {
  height: 400px; background: linear-gradient(180deg, #DEF1F8 0%, var(--sky-bg) 100%);
  position: relative;
}
.map-coords {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95); padding: 8px 14px;
  border-radius: 100px; font-size: 12px; color: var(--ink-700);
  font-weight: 600; backdrop-filter: blur(8px); z-index: 5;
}
.map-info-box {
  padding: 16px 24px; background: var(--turquoise-50);
  border-top: 1px solid var(--turquoise-300);
}
.map-info-box .info-content {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--turquoise-700); font-weight: 500;
}
.map-info-box i { font-size: 18px; }
.map-footer {
  padding: 16px 24px; display: flex; gap: 10px; justify-content: flex-end;
  border-top: 1px solid var(--ocean-50);
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 56px; text-align: center; font-size: 12px;
  color: var(--ink-500); font-weight: 500;
}
.icons-strip { display: inline-flex; gap: 14px; margin-bottom: 12px; }
.icons-strip i { font-size: 18px; }
.icons-strip i:nth-child(1) { color: var(--sunset-500); }
.icons-strip i:nth-child(2) { color: var(--turquoise-500); }
.icons-strip i:nth-child(3) { color: var(--pink-500); }
.icons-strip i:nth-child(4) { color: var(--leaf-500); }
.icons-strip i:nth-child(5) { color: var(--ocean-500); }
.footer-links {
  margin-top: 8px; display: inline-flex; gap: 8px;
  flex-wrap: wrap; justify-content: center;
}
.footer-links a { color: var(--ocean-700); text-decoration: none; font-weight: 600; }
.footer-links span { color: var(--ink-300); }
.footer-copy { margin-top: 8px; color: var(--ink-300); font-size: 11px; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 22px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: white;
  box-shadow: var(--shadow-lg); z-index: 1000;
  opacity: 0; transition: all 0.3s ease;
}
.toast.show {
  transform: translateX(-50%) translateY(0); opacity: 1;
}
.toast.success { background: var(--turquoise-500); }
.toast.error { background: var(--pink-500); }
.toast.info { background: var(--ocean-700); }

/* ===== SHARE BANNER (paylasilan rota için) ===== */
.share-banner {
  background: linear-gradient(135deg, var(--turquoise-500), var(--ocean-500));
  color: white; padding: 20px 24px; border-radius: var(--radius-lg);
  margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.share-banner > i { font-size: 32px; }
.share-banner-text { flex: 1; min-width: 200px; }
.share-banner-text strong { font-size: 16px; font-weight: 700; display: block; }
.share-banner-text p { font-size: 13px; opacity: 0.9; margin-top: 2px; }
.share-code {
  background: rgba(255,255,255,0.2); padding: 8px 14px;
  border-radius: 10px; font-family: ui-monospace, Menlo, Monaco, monospace;
  font-weight: 700; font-size: 14px;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-900));
  color: white; padding: 32px 24px; border-radius: var(--radius-lg);
  text-align: center; margin-top: 32px; position: relative; overflow: hidden;
}
.footer-cta::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--sunset-500), var(--pink-500));
  border-radius: 50%; opacity: 0.25;
}
.footer-cta h2 {
  font-size: 24px; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.02em; position: relative; z-index: 1;
}
.footer-cta p {
  font-size: 14px; opacity: 0.85; margin-bottom: 20px; max-width: 480px;
  margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}
.footer-cta .btn {
  background: white; color: var(--ocean-900); font-weight: 700;
  position: relative; z-index: 1;
}

/* ===== HATA SAYFALARI ===== */
.error-page {
  text-align: center; padding: 60px 20px;
}
.error-code {
  font-size: 96px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--sunset-500), var(--pink-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.error-page h2 {
  font-size: 28px; font-weight: 800; color: var(--ocean-900);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.error-page p {
  color: var(--ink-500); margin-bottom: 24px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ===== UTILITIES ===== */
.text-muted { color: var(--ink-500); }
.text-small { font-size: 12px; }
.text-xs { font-size: 11px; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .container { padding: 20px 16px 60px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .header-nav a { padding: 6px 10px; font-size: 13px; }
  .deco-icon { display: none; }
  .hero h2 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .actions-row { flex-direction: column; }
  .action-btn { flex: none; }
  .route-summary-top .from-to { font-size: 16px; }
  .route-summary-meta { font-size: 12px; gap: 12px; }
  .metric-value { font-size: 22px; }
  .modal { padding: 20px; }
}

/* ============================================
   ALTERNATİF ROTA KARTLARI
   Bu CSS'i main.css'in SONUNA ekle
   ============================================ */

.alt-routes-section {
  margin-bottom: 24px;
}

.alt-routes-header {
  margin-bottom: 14px;
  padding: 0 4px;
}

.alt-routes-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ocean-900);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.alt-routes-header h3 i {
  color: var(--sunset-500);
}

.alt-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.alt-route-card {
  background: white;
  border: 2px solid var(--ocean-50);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}

.alt-route-card:hover {
  border-color: var(--route-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,61,85,0.10);
}

.alt-route-card.active {
  border-color: var(--route-color);
  box-shadow: 0 4px 16px rgba(13,61,85,0.10);
}

.alt-route-card.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--route-color);
}

.alt-route-card.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--route-color);
  opacity: 0.04;
  pointer-events: none;
}

.alt-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--route-color);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.alt-route-badge i {
  font-size: 16px;
}

.alt-route-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--ocean-100);
  flex-wrap: wrap;
}

.alt-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 60px;
}

.alt-stat-label {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.alt-stat-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-900);
}

.alt-route-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alt-cost-label {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.alt-cost-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ocean-900);
  letter-spacing: -0.02em;
}

.alt-route-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--route-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.alt-route-card.active .alt-route-check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 600px) {
  .alt-routes-grid {
    grid-template-columns: 1fr;
  }
  .alt-route-stats {
    gap: 10px;
  }
}

/* ============================================
   ROTA ROZETLERİ (V1.2 - otoyol uyarısı)
   ============================================ */

.alt-route-rozet {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.alt-route-rozet.rozet-toll {
  background: rgba(247, 127, 30, 0.10);
  color: #C25A0A;
}

.alt-route-rozet.rozet-ok {
  background: rgba(111, 178, 58, 0.12);
  color: #4F8222;
}


/* ============================================
   İÇERİK SAYFALARI (V1.4)
   ============================================ */

.content-page {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.content-page h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--ocean-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ocean-50);
}

.content-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
}

.content-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean-900);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ocean-700);
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-body p {
  margin-bottom: 14px;
}

.content-body ul, .content-body ol {
  margin: 12px 0 20px 20px;
  padding-left: 20px;
}

.content-body ul li, .content-body ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-body a {
  color: var(--ocean-700);
  font-weight: 600;
  text-decoration: underline;
}

.content-body a:hover {
  color: var(--sunset-500);
}

.content-body strong {
  color: var(--ocean-900);
  font-weight: 700;
}

.content-body code {
  background: var(--sky-bg);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  font-family: ui-monospace, Menlo, Monaco, monospace;
  color: var(--ocean-700);
}

.content-body blockquote {
  border-left: 4px solid var(--sunset-500);
  background: var(--sunset-50);
  padding: 12px 16px;
  margin: 16px 0;
  color: var(--sunset-700);
  font-style: italic;
}

.content-body em {
  color: var(--ink-500);
  font-size: 13px;
}

/* ============================================
   SSS (SİK SORULAN SORULAR) AKRDEON
   ============================================ */

.sss-kategori {
  margin-bottom: 36px;
}

.sss-kategori-baslik {
  font-size: 18px;
  font-weight: 700;
  color: var(--sunset-700);
  margin-bottom: 16px;
  padding: 8px 14px;
  background: var(--sunset-50);
  border-radius: 8px;
  display: inline-block;
  letter-spacing: -0.01em;
}

.sss-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sss-item {
  background: white;
  border: 1.5px solid var(--ocean-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.sss-item[open] {
  border-color: var(--ocean-300);
  box-shadow: var(--shadow-sm);
}

.sss-soru {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: var(--ocean-900);
  font-size: 15px;
  user-select: none;
  transition: all 0.2s;
}

.sss-soru::-webkit-details-marker {
  display: none;
}

.sss-soru:hover {
  background: var(--sky-bg);
}

.sss-chevron {
  font-size: 20px;
  color: var(--ocean-500);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.sss-item[open] .sss-chevron {
  transform: rotate(180deg);
}

.sss-cevap {
  padding: 0 20px 18px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-700);
  border-top: 1px solid var(--ocean-50);
  padding-top: 14px;
}

.sss-cevap p {
  margin-bottom: 10px;
}

.sss-cevap a {
  color: var(--ocean-700);
  font-weight: 600;
  text-decoration: underline;
}

.sss-cevap strong {
  color: var(--ocean-900);
}

.sss-cevap code {
  background: var(--sky-bg);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .content-page {
    padding: 24px 18px;
  }
  .content-page h1 {
    font-size: 24px;
  }
  .content-body h2 {
    font-size: 19px;
  }
  .sss-soru {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ============================================
   ANASAYFA YAKIT FİYAT ŞERİDİ (V1.5)
   ============================================ */

.yakit-band {
  background: linear-gradient(90deg, var(--ocean-700), var(--ocean-500));
  color: white;
  padding: 10px 0;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(13,61,85,0.15);
}

.yakit-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.yakit-band-fiyatlar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.yakit-band-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.yakit-band-emoji {
  font-size: 16px;
}

.yakit-band-label {
  opacity: 0.85;
  font-weight: 500;
}

.yakit-band-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #FFE9A8;
}

.yakit-band-tarih {
  font-size: 11px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
}

.yakit-band-tarih i {
  font-size: 14px;
}

@media (max-width: 600px) {
  .yakit-band-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .yakit-band-fiyatlar {
    gap: 16px;
    justify-content: center;
  }
  .yakit-band-item {
    font-size: 12px;
  }
}
