/* Biletlines - Ana Stil
   Renk paleti: Deniz mavisi + beyaz + altın aksent */
:root {
  --primary: #006bb6;
  --primary-dark: #004d80;
  --primary-light: #e8f4fc;
  --accent: #ffa726;
  --accent-dark: #f57c00;
  --bg: #f7fbfd;
  --surface: #ffffff;
  --text: #1a3a52;
  --text-muted: #6b8294;
  --border: #d6e4ed;
  --success: #2e7d32;
  --danger: #c62828;
  --shadow-sm: 0 1px 3px rgba(0, 75, 128, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 75, 128, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 75, 128, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== HEADER ========== */
.header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.6px;
  text-decoration: none;
}
.logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 107, 182, 0.18));
}
.logo-text {
  line-height: 1;
}
.logo-on-dark { color: #fff; }
.logo-on-dark .logo-mark { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--primary); }
.header-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}
.header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.menu-toggle { display: none; font-size: 24px; color: var(--text); }

/* ========== HERO ========== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 77, 128, 0.78) 0%, rgba(0, 107, 182, 0.68) 50%, rgba(2, 136, 209, 0.62) 100%),
    url('https://images.pexels.com/photos/1029604/pexels-photo-1029604.jpeg?auto=compress&w=2000') center/cover no-repeat;
  background-color: #004d80;
  color: white;
  padding: 100px 20px 160px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='40' viewBox='0 0 100 40'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='2' d='M0,20 Q25,5 50,20 T100,20'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
  animation: waveMove 20s linear infinite;
}
@keyframes waveMove {
  from { background-position: 0 0; }
  to { background-position: 1000px 0; }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero p {
  font-size: clamp(15px, 2vw, 19px);
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ARAMA FORMU ========== */
.search-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: -80px auto 0;
  position: relative;
  z-index: 5;
}
.trip-type {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.trip-type label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  font-size: 15px;
}
.trip-type input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.search-form {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.from-to-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  align-items: end;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field select,
.form-field input,
.form-field .pax-select {
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-field select:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--primary);
}
.swap-btn {
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.35s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 107, 182, 0.35);
  padding: 0;
}
.swap-btn svg { width: 18px; height: 18px; display: block; }
.swap-btn:hover {
  transform: translateX(-50%) rotate(180deg);
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(0, 107, 182, 0.5);
}
.swap-btn:active {
  transform: translateX(-50%) rotate(180deg) scale(0.92);
}

.btn-search {
  height: 52px;
  padding: 0 36px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-search:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========== PAX SELECTOR ========== */
.pax-wrapper { position: relative; }
.pax-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.pax-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px;
  z-index: 20;
}
.pax-dropdown.open { display: block; }
.pax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.pax-row + .pax-row { border-top: 1px solid var(--border); }
.pax-info span { display: block; font-size: 13px; color: var(--text-muted); }
.pax-info strong { font-size: 15px; }
.pax-control { display: flex; align-items: center; gap: 12px; }
.pax-btn {
  width: 32px; height: 32px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.pax-btn:hover { background: var(--primary); color: white; }
.pax-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pax-count { min-width: 20px; text-align: center; font-weight: 600; }

/* ========== SECTIONS ========== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ROUTES GRID ========== */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .routes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .routes { grid-template-columns: 1fr; }
}
.route-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.route-img {
  height: 180px;
  background: linear-gradient(135deg, #4dd0e1, #006bb6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;
}
.route-img.kos { background: linear-gradient(135deg, #ffa726, #ef6c00); }
.route-img.sakiz { background: linear-gradient(135deg, #66bb6a, #2e7d32); }
.route-img.midilli { background: linear-gradient(135deg, #ab47bc, #6a1b9a); }
.route-img.rodos { background: linear-gradient(135deg, #29b6f6, #0277bd); }
.route-img.samos { background: linear-gradient(135deg, #26c6da, #00838f); }
.route-img.meis { background: linear-gradient(135deg, #ec407a, #ad1457); }
.route-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.route-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.route-arrow { color: var(--primary); }
.route-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; flex: 1; }
.route-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.route-meta span { display: flex; align-items: center; gap: 6px; }

/* ========== FEATURES ========== */
.features-bg { background: var(--surface); }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 24px;
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14px; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--primary-light);
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.trust-item span:first-child { font-size: 22px; }

/* ========== FOOTER ========== */
.footer {
  background: #0a2840;
  color: #b0c4d6;
  padding: 60px 20px 24px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #b0c4d6; font-size: 14px; }
.footer ul a:hover { color: white; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #7a92a8;
}
.tursab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: white;
  margin-top: 12px;
}

/* ========== STEPPER ========== */
.stepper {
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 14px;
}
.step.active .step-circle { background: var(--primary); border-color: var(--primary); color: white; }
.step.done .step-circle { background: var(--success); border-color: var(--success); color: white; }
.step-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.step.active .step-label { color: var(--primary); font-weight: 600; }

/* ========== SEFER LİSTESİ ========== */
.results-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}
.filters {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 90px;
}
.filters h3 { margin-bottom: 16px; font-size: 16px; }
.filter-group { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 14px;
  cursor: pointer;
}
.results-list { display: flex; flex-direction: column; gap: 16px; }
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-info { color: var(--text-muted); font-size: 14px; }
.trip-section-title {
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  background: var(--primary-light);
  border-radius: var(--radius);
  color: var(--primary-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sefer-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.sefer-card:hover { box-shadow: var(--shadow-md); }
.sefer-card.selected { border-color: var(--primary); background: var(--primary-light); }
.sefer-times { display: flex; align-items: center; gap: 16px; }
.sefer-time-block { text-align: center; }
.sefer-time-block .time { font-size: 22px; font-weight: 700; color: var(--text); }
.sefer-time-block .city { font-size: 13px; color: var(--text-muted); }
.sefer-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
  min-width: 40px;
}
.sefer-line::after {
  content: '⛴';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  padding: 0 4px;
  font-size: 16px;
}
.sefer-meta { font-size: 13px; color: var(--text-muted); }
.sefer-meta strong { display: block; color: var(--text); font-size: 14px; }
.sefer-ports {
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  display: inline-block;
  font-weight: 500;
}
.sefer-availability { font-size: 13px; }
.sefer-availability.high { color: var(--success); }
.sefer-availability.low { color: var(--accent-dark); }
.sefer-availability.sold {
  color: #999;
  font-weight: 600;
}
.sefer-card.sold-out {
  opacity: 0.55;
  background: #fafafa;
}
.sefer-card.sold-out .time,
.sefer-card.sold-out .amount {
  color: #999;
}
.sefer-select-btn.disabled,
.sefer-select-btn:disabled {
  background: #ccc !important;
  color: #777 !important;
  cursor: not-allowed;
  pointer-events: none;
}
.sefer-price { text-align: right; }
.sefer-price .currency { font-size: 12px; color: var(--text-muted); }
.sefer-price .amount { font-size: 22px; font-weight: 800; color: var(--primary); }
.sefer-price .per { font-size: 11px; color: var(--text-muted); }
.sefer-select-btn {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition);
}
.sefer-select-btn:hover { background: var(--accent-dark); }
.sefer-card.selected .sefer-select-btn { background: var(--success); }

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.no-results-icon { font-size: 60px; margin-bottom: 16px; opacity: 0.4; }

/* ========== FORM PAGES ========== */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: 8px; font-size: 24px; }
.form-card .lead { color: var(--text-muted); margin-bottom: 24px; }

.passenger-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

/* ========== VIZE SECTION ========== */
.vize-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.vize-section.error {
  background: #fff5f5;
  margin: 20px -12px 0;
  padding: 18px 12px 0;
  border-radius: 8px;
}
.vize-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.vize-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vize-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--surface);
}
.vize-option:hover { border-color: var(--primary); background: var(--primary-light); }
.vize-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.vize-option input[type="radio"]:checked ~ .vize-option-content strong {
  color: var(--primary-dark);
}
.vize-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.vize-option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.vize-option-content strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.vize-option-content span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.vize-option-content em {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
}

.vize-info-box {
  background: #e3f2fd;
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}
.vize-info-box strong { display: block; margin-bottom: 4px; color: var(--primary-dark); }

@media (max-width: 600px) {
  .vize-options { grid-template-columns: 1fr; }
}
.passenger-block h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.input-group label .req { color: var(--danger); }
.input-group input,
.input-group select {
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
}
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.input-group .help { font-size: 12px; color: var(--text-muted); }
.input-group input.error { border-color: var(--danger); }
.input-group .error-msg { font-size: 12px; color: var(--danger); }

.summary-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 90px;
}
.summary-card h3 { font-size: 17px; margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 600; text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 4px;
  border-top: 2px solid var(--border);
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}
.summary-total .value { color: var(--primary); font-size: 22px; }

.btn-primary {
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  transition: all var(--transition);
}
.btn-primary:hover:not(:disabled) { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--primary-light); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--primary); }

/* ========== ÖDEME ========== */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.payment-method {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  transition: all var(--transition);
  font-weight: 500;
}
.payment-method:hover { border-color: var(--primary); }
.payment-method.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.payment-method-icon { font-size: 28px; margin-bottom: 6px; }

.payment-info-box {
  background: #fff8e1;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}
.payment-info-box strong { display: block; margin-bottom: 4px; }

.success-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}
.success-card h2 { margin-bottom: 12px; }
.success-card p { color: var(--text-muted); margin-bottom: 8px; }
.reference-code {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 16px 0;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-page h1 { margin-bottom: 24px; font-size: 28px; }
.legal-page h2 { margin: 32px 0 12px; font-size: 20px; color: var(--primary-dark); }
.legal-page p, .legal-page li { margin-bottom: 12px; line-height: 1.8; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 12px;
  }
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
  .from-to-wrap {
    grid-column: 1 / -1;
    gap: 14px;
  }
  .swap-btn { display: none; }
  .btn-search { grid-column: 1 / -1; }
  .results-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .form-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sefer-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sefer-card > * { grid-column: span 1; }
  .sefer-times { grid-column: 1 / -1; }
  .sefer-select-btn { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .search-form { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 50px 16px 100px; }
  .search-card { padding: 20px; margin-top: -60px; }
  .trip-type { gap: 16px; }
  .section { padding: 50px 16px; }
  .stepper::before { left: 30px; right: 30px; }
  .step-label { font-size: 11px; }
  .payment-methods { grid-template-columns: 1fr; }
}

/* Loader */
.loader {
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 50px 20px;
  margin-top: -1px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .number {
  font-size: 38px;
  font-weight: 800;
  display: block;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, #b3e5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-light) 10%, var(--primary-light) 90%, transparent);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0,107,182,0.3);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--primary-light);
  border-radius: 50%;
  opacity: 0.5;
}
.step-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}
.step-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== ROUTE CARDS WITH IMAGES ========== */
.route-card .route-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  font-size: 0;
  transition: transform 0.5s ease;
}
.route-card:hover .route-img {
  transform: scale(1.05);
}
.route-card { overflow: hidden; }
.route-img.kos { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/1006965/pexels-photo-1006965.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.sakiz { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/1010657/pexels-photo-1010657.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.midilli { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/1320684/pexels-photo-1320684.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.samos { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/2549018/pexels-photo-2549018.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.meis { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/356807/pexels-photo-356807.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.rodos { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)), url('https://images.pexels.com/photos/2422915/pexels-photo-2422915.jpeg?auto=compress&w=800&h=500&fit=crop'); }
.route-img.kos, .route-img.sakiz, .route-img.midilli, .route-img.samos, .route-img.meis, .route-img.rodos {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
}

.route-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0;
}
.route-tag.popular {
  background: var(--accent);
  color: white;
}
.route-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  font-family: inherit;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-bg {
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-light) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: #ffa726;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.author-info strong {
  display: block;
  font-size: 14px;
}
.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '⛴';
  position: absolute;
  font-size: 300px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 12px;
  font-weight: 800;
}
.cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}
.cta-banner .btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.cta-banner .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,124,0,0.4);
  color: white;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulseWhatsapp 2s infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  color: white;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 2s infinite;
}
@keyframes pulseWhatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes ringPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}
.whatsapp-tooltip {
  position: fixed;
  bottom: 36px;
  right: 96px;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  z-index: 998;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--surface);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.whatsapp-float:hover ~ .whatsapp-tooltip,
.whatsapp-float:focus ~ .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Hero text */
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
}
.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--surface);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--success);
  z-index: 1000;
  animation: slideIn 0.3s ease;
  max-width: 420px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.toast.error {
  border-left-color: var(--danger);
  background: #fff5f5;
  color: #c62828;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ================== KAPIDA VİZE BÖLÜMÜ ================== */
.visa-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3fb 50%, #fff5e6 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.visa-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,107,182,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.visa-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,165,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.visa-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.visa-head {
  text-align: center;
  margin-bottom: 48px;
}
.visa-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}
.visa-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.visa-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.visa-subtitle strong {
  color: var(--primary);
}
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.visa-island {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,107,182,0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.visa-island:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 107, 182, 0.18);
}
.visa-island:hover .visa-island-cta {
  background: var(--primary);
  color: white;
}
.visa-island-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.visa-island-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}
.visa-island-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 24px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.visa-island-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(0,107,182,0.08);
  color: var(--primary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.visa-island-body {
  padding: 20px 22px 22px;
}
.visa-island-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 14px;
}
.visa-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.visa-info li {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
}
.visa-info li:last-child {
  border-bottom: none;
  font-weight: 600;
  color: var(--primary);
}
.visa-info strong {
  color: #333;
  font-weight: 600;
}
.visa-howto {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 107, 182, 0.1);
  border: 1px solid rgba(0,107,182,0.1);
}
.visa-howto h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 28px;
  text-align: center;
}
.visa-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.visa-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(135deg, #f8fbff, #fff);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}
.visa-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 107, 182, 0.3);
}
.visa-step strong {
  display: block;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.visa-step p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.visa-requirements {
  background: linear-gradient(135deg, #fff8e6, #fffbf0);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 28px;
  border: 1px solid #ffd966;
}
.visa-requirements h4 {
  font-size: 18px;
  font-weight: 700;
  color: #b8860b;
  margin: 0 0 14px;
}
.visa-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.visa-requirements li {
  font-size: 14px;
  color: #555;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
  border: 1px solid #f0e0a0;
}
.visa-requirements li strong {
  color: #b8860b;
}
.visa-note {
  font-size: 13px;
  color: #8b6914;
  margin: 0;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px dashed #ffd966;
}
.visa-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.visa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}
@media (max-width: 900px) {
  .visa-section { padding: 56px 16px; }
  .visa-title { font-size: 32px; }
  .visa-subtitle { font-size: 15px; }
  .visa-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .visa-howto { padding: 28px 20px; }
  .visa-howto h3 { font-size: 22px; }
  .visa-steps { grid-template-columns: 1fr; gap: 14px; }
  .visa-requirements ul { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .visa-title { font-size: 26px; }
  .visa-grid { grid-template-columns: 1fr; }
  .visa-island-img { height: 140px; }
  .visa-cta { width: 100%; text-align: center; padding: 14px 20px; }
}

/* Trust row - hızlı vurgu */
.visa-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.visa-trust-item {
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 107, 182, 0.08);
  border: 1px solid rgba(0,107,182,0.1);
}
.visa-trust-item strong {
  color: var(--primary-dark);
}

/* ================== VİZE DETAY SAYFASI ================== */
.visa-detail-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px 80px;
  color: white;
  text-align: center;
  position: relative;
}
.visa-detail-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.visa-back {
  display: inline-block;
  color: white !important;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s ease;
}
.visa-back:hover {
  background: rgba(255,255,255,0.25);
}
.visa-detail-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 16px 0 12px;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.visa-detail-hero-sub {
  font-size: 18px;
  opacity: 0.95;
  margin: 0;
}

/* Hızlı özet kartları */
.visa-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.visa-quick-card {
  background: white;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,107,182,0.12);
  border: 1px solid rgba(0,107,182,0.08);
}
.visa-quick-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.visa-quick-card strong {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.visa-quick-card span {
  font-size: 17px;
  color: var(--primary-dark);
  font-weight: 700;
}

/* Bizimle kolay */
.visa-easy-section {
  background: linear-gradient(135deg, #f0f8ff, #e6f3fb);
  padding: 70px 20px;
  margin-top: 60px;
}
.visa-easy-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.visa-easy-head {
  text-align: center;
  margin-bottom: 48px;
}
.visa-easy-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 16px 0 14px;
  letter-spacing: -0.8px;
}
.visa-easy-head p {
  font-size: 17px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.visa-easy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.visa-easy-item {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border-top: 4px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0,107,182,0.08);
}
.visa-easy-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 14px rgba(0,107,182,0.3);
}
.visa-easy-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 12px;
}
.visa-easy-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.visa-easy-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: white;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,107,182,0.1);
}
.visa-easy-highlight > div strong {
  display: block;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.visa-easy-highlight > div p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Ada hakkında */
.visa-about {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.visa-about h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 16px;
}
.visa-about > p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}
.visa-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.visa-about-grid h4 {
  font-size: 17px;
  color: var(--primary-dark);
  margin: 0 0 12px;
}
.visa-about-grid ul {
  padding-left: 20px;
  margin: 0;
}
.visa-about-grid li {
  font-size: 14px;
  color: #555;
  padding: 4px 0;
}
.visa-about-grid p {
  font-size: 14px;
  color: #555;
  margin: 6px 0;
  line-height: 1.6;
}

/* Belgeler */
.visa-docs-section {
  background: #fafbfc;
  padding: 70px 20px;
  margin-top: 60px;
}
.visa-docs-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.visa-docs-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.visa-docs-sub {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin: 0 0 36px;
}
.visa-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.visa-doc {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #eaeef2;
  transition: transform 0.2s ease;
}
.visa-doc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,107,182,0.1);
}
.visa-doc-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.visa-doc h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 8px;
}
.visa-doc p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.visa-warning {
  background: linear-gradient(135deg, #fff5f5, #ffe9e9);
  border-left: 5px solid #e74c3c;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.visa-warning h4 {
  color: #c62828;
  font-size: 17px;
  margin: 0 0 10px;
}
.visa-warning p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.visa-info-card {
  background: linear-gradient(135deg, #f0f8ff, #e6f3fb);
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(0,107,182,0.15);
}
.visa-info-card h4 {
  color: var(--primary-dark);
  font-size: 17px;
  margin: 0 0 14px;
}
.visa-info-card ul {
  margin: 0;
  padding-left: 20px;
}
.visa-info-card li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  line-height: 1.5;
}

/* CTA */
.visa-cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 20px;
  text-align: center;
  color: white;
}
.visa-cta-inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.visa-cta-inner p {
  font-size: 17px;
  opacity: 0.95;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.visa-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary-large, .btn-whatsapp-large {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.btn-primary-large {
  background: white;
  color: var(--primary-dark) !important;
}
.btn-whatsapp-large {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-primary-large:hover, .btn-whatsapp-large:hover {
  transform: translateY(-2px);
}

/* Diğer adalar */
.visa-other-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 24px auto 0;
}
.visa-other-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  border: 1px solid #eee;
}
.visa-other-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,107,182,0.15);
}
.visa-other-img {
  height: 100px;
  background-size: cover;
  background-position: center;
}
.visa-other-body {
  padding: 12px 14px;
}
.visa-other-body strong {
  display: block;
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 3px;
}
.visa-other-body span {
  font-size: 12px;
  color: #888;
}

@media (max-width: 900px) {
  .visa-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .visa-detail-hero { padding: 70px 16px 60px; }
  .visa-detail-hero h1 { font-size: 34px; }
  .visa-easy-section { padding: 50px 16px; }
  .visa-easy-head h2 { font-size: 26px; }
  .visa-easy-grid { grid-template-columns: 1fr; }
  .visa-easy-highlight { grid-template-columns: 1fr; padding: 24px; }
  .visa-about { padding: 24px; }
  .visa-about-grid { grid-template-columns: 1fr; gap: 20px; }
  .visa-docs-section { padding: 50px 16px; }
  .visa-docs-inner h2 { font-size: 24px; }
  .visa-docs-grid { grid-template-columns: repeat(2, 1fr); }
  .visa-cta-inner h2 { font-size: 26px; }
  .visa-other-grid { grid-template-columns: repeat(3, 1fr); }
  .visa-trust-row { gap: 8px; }
  .visa-trust-item { font-size: 12px; padding: 8px 12px; }
}
@media (max-width: 560px) {
  .visa-detail-hero h1 { font-size: 26px; }
  .visa-detail-hero-sub { font-size: 14px; }
  .visa-quick-grid { grid-template-columns: 1fr 1fr; }
  .visa-docs-grid { grid-template-columns: 1fr; }
  .visa-cta-buttons { flex-direction: column; }
  .btn-primary-large, .btn-whatsapp-large { width: 100%; padding: 14px 20px; }
  .visa-other-grid { grid-template-columns: repeat(2, 1fr); }
}

/* SEO intro - snippet için zengin metin */
.seo-intro {
  background: white;
  padding: 50px 20px 30px;
  text-align: center;
}
.seo-intro-inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-intro h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 18px;
}
.seo-intro p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 14px;
  text-align: left;
}
.seo-intro a { color: var(--primary); font-weight: 600; }
@media (max-width: 600px) {
  .seo-intro { padding: 36px 16px 20px; }
  .seo-intro h2 { font-size: 22px; }
  .seo-intro p { font-size: 14.5px; }
}

/* Anasayfa: kapıda vize 4 iş günü deadline notu */
.visa-deadline-warn {
  margin-top: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e8f5ff, #d6eeff);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  font-size: 14px;
  color: #1a4d6f;
  line-height: 1.6;
}
.visa-deadline-warn strong {
  color: var(--primary-dark);
}

/* Yolcu formundaki kapıda vize tarih uyarı banner'ı */
.vize-uyari-banner {
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, #fff3cd, #ffeaa0);
  border: 2px solid #f0c136;
  border-left: 6px solid #e6a900;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.vize-uyari-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.vize-uyari-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #8b6914;
  font-weight: 800;
}
.vize-uyari-content p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #5d4500;
  line-height: 1.6;
}
.vize-uyari-content p strong {
  color: #8b6914;
}
.vize-uyari-btn {
  display: inline-block;
  margin-top: 10px;
  background: #8b6914;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.vize-uyari-btn:hover {
  background: #6d5210;
}

/* Disabled vize seçeneği */
.vize-option.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f5f5f5 !important;
  border-color: #ddd !important;
}
.vize-option.disabled input { cursor: not-allowed; }

/* Inline tarih uyarısı (radio değişimde) */
.vize-tarih-uyari {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fff3cd;
  border-left: 4px solid #e6a900;
  border-radius: 8px;
}
.vize-tarih-uyari strong {
  display: block;
  color: #8b6914;
  margin-bottom: 8px;
}
.vize-tarih-uyari p {
  font-size: 13px;
  color: #5d4500;
  margin: 4px 0;
}
.vize-tarih-uyari-cta {
  display: inline-block;
  margin-top: 10px;
  background: #8b6914;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 600px) {
  .vize-uyari-banner { flex-direction: column; padding: 18px 20px; }
  .vize-uyari-icon { font-size: 28px; }
}
