/* ================================================
   transferturkiye.com - Ana Stil Dosyası
   Modern travel platform: mavi + turuncu palette
   Mobile-first, performans odaklı
   ================================================ */

/* ────────────────────────────────────────────
   CSS Değişkenleri
   ──────────────────────────────────────────── */
:root {
  /* Ana renkler */
  --primary:      #1A56DB;
  --primary-dk:   #1044B8;
  --primary-lt:   #EEF2FF;
  --accent:       #F97316;
  --accent-dk:    #EA6A0A;
  --accent-lt:    #FFF7ED;

  /* Nötral */
  --bg:           #F8FAFC;
  --card:         #FFFFFF;
  --border:       #E2E8F0;
  --border-lt:    #F1F5F9;
  --text:         #0F172A;
  --text-sec:     #475569;
  --text-light:   #94A3B8;
  --text-inv:     #FFFFFF;

  /* Durum */
  --success:      #16A34A;
  --success-bg:   #F0FDF4;
  --warning:      #D97706;
  --warning-bg:   #FFFBEB;
  --danger:       #DC2626;
  --danger-bg:    #FEF2F2;
  --info:         #0284C7;

  /* Tipografi */
  --font-head:    'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Boşluk */
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.14);
  --transition:   0.2s ease;

  /* Layout */
  --container:    1200px;
  --header-h:     68px;
  --top-bar-h:    38px;
}

/* ────────────────────────────────────────────
   Reset & Base
   ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dk); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

ul { list-style: none; }
address { font-style: normal; }

/* ────────────────────────────────────────────
   Container
   ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ────────────────────────────────────────────
   Top Bar
   ──────────────────────────────────────────── */
.top-bar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.agency-cert {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: .9;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-phone {
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
}
.top-phone:hover { color: #fff; }

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 2px;
}
.lang-switcher a {
  color: rgba(255,255,255,.8);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lang-switcher a.active, .lang-switcher a:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* ────────────────────────────────────────────
   Header / Navbar
   ──────────────────────────────────────────── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}

.main-header.scrolled { box-shadow: var(--shadow); }

/* Şeffaf header (hero sayfalar için) */
.main-header.transparent {
  background: transparent;
  border-bottom: none;
  position: absolute;
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links li a {
  color: var(--text-sec);
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--primary);
  background: var(--primary-lt);
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ────────────────────────────────────────────
   Mobile Menu
   ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--card);
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
}
.mobile-menu ul a:hover { background: var(--primary-lt); color: var(--primary); }
.mobile-menu .mobile-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  margin-top: 16px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-menu-close:hover { background: var(--border); }

/* ────────────────────────────────────────────
   Flash Mesajları
   ──────────────────────────────────────────── */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin: 12px auto;
}
.flash-success { background: var(--success-bg); color: var(--success); border: 1px solid #bbf7d0; }
.flash-error   { background: var(--danger-bg);  color: var(--danger);  border: 1px solid #fecaca; }

/* ────────────────────────────────────────────
   HERO - Ana Sayfa
   ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0B2D87 0%, #1A56DB 50%, #1E78E0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: .22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,80,.7) 0%, rgba(26,86,219,.55) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249,115,22,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(26px, 5vw, 48px);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ────────────────────────────────────────────
   Booking Widget
   ──────────────────────────────────────────── */
.booking-widget {
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 24px;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.widget-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--bg);
  padding: 4px;
  border-radius: var(--radius);
}

.widget-tab {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.widget-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.widget-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-field label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.widget-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.widget-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.widget-input::placeholder { color: var(--text-light); }

.widget-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.btn-search {
  height: 48px;
  padding: 0 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-search:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

/* Return date satırı */
.widget-return-row {
  display: none;
  margin-top: 10px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.widget-return-row.show { display: grid; }

/* ────────────────────────────────────────────
   Trust Badges
   ──────────────────────────────────────────── */
.trust-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sec);
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   Section Base
   ──────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(22px, 3.5vw, 34px); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--text-sec); max-width: 520px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ────────────────────────────────────────────
   Araç Kartları
   ──────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vehicle-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.vehicle-card.selected {
  border-color: var(--primary);
  background: var(--primary-lt);
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

.vehicle-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.vehicle-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.vehicle-cap {
  font-size: 13px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-tag {
  font-size: 11px;
  color: var(--text-sec);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
}

.vehicle-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.vehicle-price small { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* ────────────────────────────────────────────
   Popüler Rotalar
   ──────────────────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.route-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.route-card:hover {
  border-color: var(--primary);
  background: var(--primary-lt);
  transform: translateX(3px);
  color: var(--primary);
}

.route-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.route-card:hover .route-arrow {
  background: var(--primary);
  color: #fff;
}

.route-info { flex: 1; }
.route-from-to { font-size: 14px; font-weight: 600; }
.route-price { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 2px; }

/* ────────────────────────────────────────────
   Nasıl Çalışır
   ──────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: .25;
}

.step-card { text-align: center; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
  position: relative;
  z-index: 1;
}

.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-sec); }

/* ────────────────────────────────────────────
   Güven / Yasal Bölüm
   ──────────────────────────────────────────── */
.legal-section {
  background: var(--primary);
  color: rgba(255,255,255,.9);
  padding: 40px 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.legal-cert h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.legal-cert p { font-size: 13.5px; opacity: .85; }

.legal-disclaimer {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
}

/* ────────────────────────────────────────────
   Form Elemanları (Rezervasyon Akışı)
   ──────────────────────────────────────────── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 6px;
}
.form-label span.req { color: var(--danger); margin-left: 3px; }

.form-control {
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--card);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
textarea.form-control { height: auto; padding: 12px 14px; resize: vertical; }
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ────────────────────────────────────────────
   Butonlar
   ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 46px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-accent    { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dk); color: #fff; }

.btn-outline   { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-lt); }

.btn-lg { height: 54px; padding: 0 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ────────────────────────────────────────────
   Progress Steps (Rezervasyon Akışı)
   ──────────────────────────────────────────── */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px 0;
}

.p-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.p-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  width: calc(200% - 36px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.p-step.done:not(:last-child)::after,
.p-step.active:not(:last-child)::after {
  background: var(--primary);
}

.p-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.p-step.done .p-num {
  background: var(--success);
  color: #fff;
}
.p-step.active .p-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(26,86,219,.2);
}

.p-label { font-size: 11px; color: var(--text-light); font-weight: 500; white-space: nowrap; }
.p-step.active .p-label { color: var(--primary); font-weight: 600; }

/* ────────────────────────────────────────────
   Özet Kutusu
   ──────────────────────────────────────────── */
.booking-summary {
  background: var(--primary-lt);
  border: 1.5px solid rgba(26,86,219,.18);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(26,86,219,.1);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  margin-top: 6px;
  padding-top: 12px;
  border-top: 2px solid rgba(26,86,219,.2);
  border-bottom: none;
}

/* ────────────────────────────────────────────
   Map Container
   ──────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

/* ────────────────────────────────────────────
   Footer
   ──────────────────────────────────────────── */
.site-footer {
  background: #0F172A;
  color: rgba(255,255,255,.7);
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-logo { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; margin-bottom: 10px; }
.footer-cert { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 16px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: #fff; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: 13.5px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,.95); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.contact-item a { color: rgba(255,255,255,.7); }
.contact-item a:hover { color: #fff; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 14px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}

/* ────────────────────────────────────────────
   WhatsApp Float
   ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 50;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  color: #fff;
}

/* ────────────────────────────────────────────
   Admin Layout Base (override admin.css için)
   ──────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* ────────────────────────────────────────────
   Responsive
   ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .widget-form { grid-template-columns: 1fr 1fr; }
  .widget-form > *:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; }
  .trust-item { flex-shrink: 0; }
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links, .btn-cta { display: none; }
  .top-phone:not(:first-child) { display: none; }

  .widget-form { grid-template-columns: 1fr; }
  .widget-tabs { font-size: 12px; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .progress-steps .p-label { display: none; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────
   Yardımcı Sınıflar
   ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.fw-600 { font-weight: 600; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-sec); }
.text-sm      { font-size: 13px; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger  { background: var(--danger-bg);  color: var(--danger); }
.badge-primary { background: var(--primary-lt); color: var(--primary); }

/* Loading spinner */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--border-lt) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
