/* ================================================
   INFINITY VIP TURİZM — Ana Stil Dosyası
   Renk Paleti: Turkuaz + Beyaz + Turuncu
   ================================================ */

:root {
    --primary: #06B6D4;
    --primary-dark: #0891B2;
    --primary-light: #CFFAFE;
    --accent: #F97316;
    --accent-dark: #EA6C10;
    --white: #FFFFFF;
    --bg: #F0FAFE;
    --bg-section: #F8FAFC;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(6,182,212,0.10);
    --shadow-lg: 0 8px 48px rgba(6,182,212,0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon { width: 50px; height: 30px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.lang-switch {
    display: flex;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.lang.active { color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,182,212,0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(6,182,212,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight { color: var(--primary); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Lokasyon */
.location-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 14px;
}

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

.field-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-input {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    background: white;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

/* ── Telefon ülke seçici ── */
.phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6,182,212,.1);
}
.phone-country {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 100%;
    min-height: 42px;
    border-right: 1.5px solid var(--border);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}
.phone-country:hover { background: var(--bg); }
.phone-flag    { font-size: 20px; line-height: 1; display: flex; align-items: center; }
.phone-dialcode { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1; }
.phone-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
    flex: 1;
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.phone-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 280px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 200;
    overflow: hidden;
}
.phone-dropdown.open { display: block; }
.phone-search {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    outline: none;
    font-family: inherit;
}
.phone-list { max-height: 220px; overflow-y: auto; }
.phone-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background var(--transition);
}
.phone-option:hover { background: var(--bg); }
.phone-option-name { flex: 1; color: var(--text); }
.phone-option-dial { color: var(--text-muted); font-weight: 600; font-size: 12px; }

.field-textarea {
    resize: vertical;
    min-height: 70px;
    line-height: 1.5;
}

/* Autocomplete */
.autocomplete-wrap { position: relative; }

.autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: white;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    max-height: 200px;
    overflow-y: auto;
    z-index: 200;
    display: none;
    box-shadow: var(--shadow);
}

.autocomplete-list.show { display: block; }

.autocomplete-item {
    padding: 9px 13px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover {
    background: var(--bg);
    color: var(--primary);
}

/* Google Maps Places Autocomplete dropdown */
.pac-container {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
    overflow: hidden;
}
.pac-item {
    padding: 9px 13px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    border-top: 1px solid var(--border);
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected { background: var(--bg); }
.pac-item-query { font-size: 13px; color: var(--text); }
.pac-matched { color: var(--primary); font-weight: 600; }
.pac-icon { display: none; }

.item-type {
    font-size: 10px;
    color: var(--text-muted);
    background: var(--bg);
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
}

/* Takas butonu */
.swap-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all var(--transition);
    margin-bottom: 1px;
}

.swap-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg);
    transform: rotate(90deg);
}

/* Detaylar */
.details-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

/* Bagaj */
.luggage-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.luggage-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.luggage-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: all var(--transition);
    line-height: 1;
}

.counter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

#small-count, #large-count {
    min-width: 18px;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
}

/* Butonlar */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(6,182,212,0.38);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(249,115,22,0.38);
}

.btn-full { width: 100%; }

/* ================================================
   ARAÇ SEÇİMİ
   ================================================ */
.distance-badge {
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 20px;
}

.vehicles-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 2px;
}

.vehicles-grid::-webkit-scrollbar { width: 4px; }
.vehicles-grid::-webkit-scrollbar-track { background: var(--bg); border-radius: 4px; }
.vehicles-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.vehicle-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vehicle-card:hover {
    border-color: var(--primary);
    background: rgba(6,182,212,0.03);
    transform: translateX(2px);
}

.vehicle-card.selected {
    border-color: var(--primary);
    background: rgba(6,182,212,0.06);
}

.vehicle-card.insufficient {
    opacity: 0.5;
    cursor: not-allowed;
}

.vehicle-emoji {
    font-size: 30px;
    width: 44px;
    text-align: center;
    flex-shrink: 0;
}

.vehicle-info { flex: 1; min-width: 0; }

.vehicle-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.vehicle-model {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.vehicle-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-tag {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

.vehicle-warn {
    font-size: 11px;
    color: #EF4444;
    margin-top: 4px;
    font-weight: 500;
}

.vehicle-price { text-align: right; flex-shrink: 0; }

.price-amount {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.price-label {
    font-size: 10px;
    color: var(--text-muted);
}

/* ================================================
   BİLGİLER FORMU
   ================================================ */
.details-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.flight-section {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px;
    background: var(--bg);
}

.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
   ÖZET
   ================================================ */
.summary-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}

.summary-row:last-child { border-bottom: none; }

.summary-label {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.summary-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.total-price {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    padding: 12px;
    background: rgba(6,182,212,0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(6,182,212,0.15);
}

.payment-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
}

/* ================================================
   HERO — YENİ DÜZEN (büyük form)
   ================================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: stretch;
    background: linear-gradient(145deg, #E0F7FA 0%, #F0FAFE 45%, #FFF7ED 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: clamp(96px, 11vh, 136px);
    padding-bottom: 0;
}

.hero-header {
    text-align: center;
    margin-bottom: 16px;
    max-width: 680px;
}

.hero-header h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 10px;
}

.hero-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Büyük rezervasyon formu */
.booking-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6,182,212,0.12);
    padding: 28px 36px;
    width: 100%;
    max-width: 920px;
}

.booking-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.booking-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.booking-card-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.location-group {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

/* Büyük inputlar */
.field-lg {
    padding: 11px 14px;
    font-size: 14px;
}

/* Büyük buton */
.btn-xl {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 12px;
}

/* İstatistikler — form ile ekran altı arasında ortalı */
.hero-stats-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ================================================
   ADIM GÖSTERGESİ (iç sayfalar)
   ================================================ */
.page-steps {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
    margin-top: 72px;
    position: sticky;
    top: 72px;
    z-index: 90;
}

.steps-bar {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    cursor: default;
}

a.step-item { cursor: pointer; }
a.step-item:hover { color: var(--primary); }

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.step-item.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-item.active {
    color: var(--primary);
    font-weight: 700;
}

.step-item.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-item.completed { color: var(--primary); }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 10px;
    min-width: 30px;
}

.step-line.completed {
    background: var(--primary);
}

/* ================================================
   İÇ SAYFA LAYOUT
   ================================================ */
.page-main {
    padding: 48px 0 72px;
    background: var(--bg);
    min-height: calc(100vh - 130px);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: flex-start;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Güzergah özeti bandı */
.route-summary {
    margin-bottom: 16px;
}

/* Güzergah haritası */
.route-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .route-map { height: 220px; }
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1.5px solid var(--primary);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    flex-wrap: wrap;
}

.route-dist {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── Sidebar edit form ── */
.summary-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.summary-box-head .summary-box-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.btn-edit {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(6,182,212,.08);
    border: 1px solid rgba(6,182,212,.3);
    border-radius: 8px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn-edit:hover { background: rgba(6,182,212,.18); border-color: var(--primary); }

.edit-form { padding-top: 4px; }

.edit-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}
.edit-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}
.edit-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text);
    background: white;
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.edit-input:focus { outline: none; border-color: var(--primary); }

.edit-ac-wrap { position: relative; }

.edit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.edit-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}
.edit-counter span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}
.cnt-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    padding: 0;
    color: var(--text);
}
.cnt-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ── İki sütun: liste + sidebar ── */
.page-layout-v {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.vehicles-col { flex: 1; min-width: 0; }
.sidebar-col {
    width: 280px;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .page-layout-v { flex-direction: column; }
    .sidebar-col { width: 100%; position: static; }
}

/* ── Dikey araç listesi ── */
.vehicle-list-v {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.vehicle-card-v {
    display: flex;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.vehicle-card-v:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-1px); }
.vehicle-card-v.selected { border-color: var(--primary); background: rgba(6,182,212,.04); box-shadow: 0 0 0 4px rgba(6,182,212,.12); }
.vehicle-card-v.insufficient { opacity: .45; cursor: not-allowed; }
.vehicle-card-v.insufficient:hover { border-color: var(--border); box-shadow: none; transform: none; }

/* Fotoğraf alanı — kaydırılabilir */
.vcv-gallery {
    width: 360px;
    flex-shrink: 0;
    align-self: stretch;   /* kart yüksekliğini doldur */
    background: #000;
    position: relative;
    overflow: hidden;
}
.vcv-img-track {
    display: flex;
    height: 100%;
    will-change: transform;
}
.vcv-slide {
    flex: 0 0 360px;
    width: 360px;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}
.vcv-placeholder {
    flex: 0 0 360px;
    width: 360px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: var(--bg);
}
.vcv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    padding: 0;
}
.vcv-arrow:hover { background: white; color: var(--primary); }
.vcv-arrow-prev { left: 10px; }
.vcv-arrow-next { right: 10px; }

.vcv-slide-empty {
    flex: 0 0 360px;
    width: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px dashed var(--border);
    color: var(--text-muted);
    font-size: 12px;
    background: repeating-linear-gradient(135deg, var(--bg) 0, var(--bg) 8px, #f5f5f5 8px, #f5f5f5 16px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.88);
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.vcv-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 8px 0;
    background: transparent;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
}
.vcv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    transition: all .2s;
    cursor: default;
    padding: 0;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.vcv-dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

.vcv-badge {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
}

/* Bilgi alanı */
.vcv-info {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
.vcv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.vcv-name { font-size: 20px; font-weight: 700; color: var(--text); }
.vcv-model { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.vcv-price { font-size: 24px; font-weight: 800; color: var(--primary); white-space: nowrap; }
.vcv-price-loading { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.vcv-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.vcv-meta span { font-size: 12px; color: var(--text-muted); background: var(--bg); padding: 3px 10px; border-radius: 20px; }
.vcv-features { display: flex; flex-wrap: wrap; gap: 6px; }
.vcv-feat { font-size: 11px; color: var(--text-muted); background: var(--bg); padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); }

/* Döviz kur satırı */
.vcv-currencies {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.vcv-cur-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.vcv-cur-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 6px 14px;
    min-width: 70px;
    cursor: pointer;
    transition: all var(--transition);
}
.vcv-cur-item:hover {
    border-color: rgba(6,182,212,.5);
    background: rgba(6,182,212,.04);
}
.vcv-cur-code {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.vcv-cur-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-top: 1px;
}
.vcv-cur-note {
    font-size: 10px;
    color: var(--text-muted);
}
.vcv-cur-item.vcv-cur-active {
    border-color: var(--primary);
    background: rgba(6,182,212,.08);
}
.vcv-cur-item.vcv-cur-active .vcv-cur-code { color: var(--primary); }
.vcv-cur-item.vcv-cur-active .vcv-cur-val  { color: var(--primary); font-size: 16px; }
.vcv-cur-loading {
    font-size: 11px;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .vehicle-card-v { flex-direction: column; }
    .vcv-gallery { width: 100%; min-height: 220px; }
    .vcv-slide, .vcv-slide-empty, .vcv-placeholder { flex: 0 0 100%; width: 100%; }
    .vcv-info { padding: 18px; }
}

/* ── Carousel ── */
.carousel-wrap {
    position: relative;
    margin: 0 -8px;
}

.vehicle-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 8px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.vehicle-carousel::-webkit-scrollbar { display: none; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}
.carousel-btn:hover { border-color: var(--primary); color: var(--primary); }
.carousel-prev { left: -4px; }
.carousel-next { right: -4px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Araç kartı (yeni) */
.vehicle-card-new {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}
.vehicle-card-new:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.vehicle-card-new.selected {
    border-color: var(--primary);
    background: rgba(6,182,212,0.03);
    box-shadow: 0 0 0 4px rgba(6,182,212,0.12);
}
.vehicle-card-new.insufficient { opacity: 0.45; cursor: not-allowed; }
.vehicle-card-new.insufficient:hover { transform: none; border-color: var(--border); box-shadow: none; }

.vc-new-img-wrap {
    height: 170px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vc-new-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}
.vc-new-placeholder {
    font-size: 64px;
    line-height: 1;
}

.vc-new-body { padding: 20px; }

.vc-new-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.vc-new-model {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.vc-new-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.vc-new-meta span {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 20px;
}
.vc-new-features {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.vc-new-feat {
    font-size: 12px;
    color: var(--text-muted);
}
.vc-new-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

/* Seçim çubuğu */
.selection-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    gap: 16px;
}
.selection-info {
    font-size: 14px;
    color: var(--text-muted);
}
.selection-info strong { color: var(--text); font-weight: 600; }

@media (max-width: 768px) {
    .vehicle-card-new { flex: 0 0 260px; }
    .carousel-btn { display: none; }
    .selection-bar { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Araç listesi (büyük kartlar) */
.vehicles-section { min-width: 0; }

.vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vehicle-card-lg {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.vehicle-card-lg.selected {
    border-color: var(--primary);
    background: rgba(6,182,212,0.04);
}

.vehicle-card-lg.insufficient {
    opacity: 0.5;
    cursor: not-allowed;
}

.vc-left { flex-shrink: 0; }

.vc-emoji {
    font-size: 44px;
    width: 60px;
    text-align: center;
}

.vc-img {
    width: 180px;
    height: 110px;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 600px) {
    .vc-img { width: 130px; height: 80px; }
}

.vc-body { flex: 1; min-width: 0; }

.vc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.vc-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.vc-model {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.vc-price-box { text-align: right; flex-shrink: 0; }

.vc-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.vc-price-label {
    font-size: 11px;
    color: var(--text-muted);
}

.vc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vc-spec {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.vc-warn {
    font-size: 12px;
    color: #EF4444;
    margin-top: 8px;
    font-weight: 500;
}

.vc-select-indicator {
    flex-shrink: 0;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.vehicle-card-lg.selected .vc-radio {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 4px white;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 140px;
}

.summary-box {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.summary-box-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sb-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

.sb-row:last-child { border-bottom: none; }

.sb-row > span:first-child {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.sb-row > span:last-child {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.sb-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid var(--primary);
    border-bottom: none;
}

.sb-total > span:first-child {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.sb-total > span:last-child {
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
}

.summary-box .btn-primary {
    margin-top: 20px;
}

/* ================================================
   DETAY FORMU (details.html)
   ================================================ */
.form-section { min-width: 0; }

.form-block {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.form-block-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.optional-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 10px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Uçuş arama ── */
.flight-input-wrap {
    position: relative;
}
.flight-spinner {
    display: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
}
.flight-spinner.active {
    display: block;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

#flightStatus { margin-top: 8px; }

.fs-error {
    font-size: 12px;
    color: #EF4444;
}
.fs-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(6,182,212,.06);
    border: 1px solid rgba(6,182,212,.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
}
.fs-route {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
}
.fs-iata {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}
.fs-time {
    margin-left: 6px;
    color: var(--text-muted);
    font-size: 12px;
}
.fs-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.fs-badge--scheduled  { background: #FEF3C7; color: #B45309; }
.fs-badge--active     { background: #D1FAE5; color: #059669; }
.fs-badge--landed     { background: #DBEAFE; color: #1D4ED8; }
.fs-badge--cancelled  { background: #FEE2E2; color: #DC2626; }
.fs-badge--diverted   { background: #F3E8FF; color: #7C3AED; }

/* ── Uçuş listesi ── */
.fli-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 16px 0 10px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

#flightList { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }

.fli-item {
    background: white;
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}
.fli-item:hover    { border-color: rgba(6,182,212,.5); box-shadow: 0 2px 12px rgba(6,182,212,.08); }
.fli-item.selected { border-color: var(--border); border-left-color: var(--primary); }

.fli-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.fli-id { display: flex; align-items: center; gap: 8px; }
.fli-code    { font-weight: 800; font-size: 15px; color: var(--text); }
.fli-airline { font-size: 12px; color: var(--text-muted); }

/* Tarih etiketi */
.fli-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg);
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 12px;
    display: inline-block;
}

/* Kalkış/Varış sütunları */
.fli-legs {
    display: flex;
    align-items: center;
}
.fli-leg {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 64px;
}
.fli-leg--right { align-items: flex-end; }
.fli-leg-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.fli-leg-time {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.fli-leg-iata {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .5px;
}

.fli-leg-arrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
}
.fli-dur {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Tik ikonu — sadece seçilince görünür */
.fli-check-icon {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transition: all var(--transition);
}
.fli-item.selected .fli-check-icon {
    opacity: 1;
    border-color: var(--primary);
    background: rgba(6,182,212,.1);
}

/* Seçilen uçuş banner */
#selectedFlightCard { margin-top: 16px; }

.fli-sel-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(6,182,212,.15);
}
.fli-sel-banner-check {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fli-sel-banner-body {
    flex: 1;
    min-width: 0;
}
.fli-sel-banner-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}
.fli-sel-banner-meta {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fli-sel-banner-times {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.fli-sel-banner-ap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.fli-sel-banner-time {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.fli-sel-banner-iata {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .5px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
    background: white;
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ================================================
   ÖDEME (payment.html)
   ================================================ */
.price-summary-box {
    border-color: rgba(6,182,212,0.3);
}

.total-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.price-includes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-includes p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.payment-block { text-align: center; }

.payment-coming-soon {
    padding: 32px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
}

.payment-icon { font-size: 40px; margin-bottom: 12px; }

.payment-coming-soon h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.payment-coming-soon p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

.btn-complete {
    padding: 15px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* ================================================
   FEATURES
   ================================================ */
.features {
    padding: 64px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    background: white;
}

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

.feature-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ================================================
   ARAÇ FİLOSU
   ================================================ */
.fleet {
    padding: 64px 0;
    background: var(--bg-section);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fleet-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

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

.fleet-img {
    height: 130px;
    background: linear-gradient(135deg, #CFFAFE, #E0F7FA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.fleet-body { padding: 16px; }

.fleet-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.fleet-cap {
    font-size: 12px;
    color: var(--text-muted);
}

.fleet-model {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ================================================
   İLETİŞİM
   ================================================ */
.contact { padding: 64px 0; background: white; }

.contact-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 56px 40px;
    color: white;
}

.contact-card h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-card p {
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 28px 0;
    background: var(--text);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: white;
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.modal-icon { font-size: 48px; margin-bottom: 16px; }

.modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.modal p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .features-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 { font-size: 36px; }
}

@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }

    .hero > .container {
        padding-top: clamp(88px, 12vh, 110px);
        padding-bottom: 24px;
    }

    .hero-header h1 { font-size: 28px; }

    .booking-card { padding: 20px 16px; }

    .location-group { flex-direction: column; }

    .swap-btn {
        align-self: center;
        transform: rotate(90deg);
    }

    .swap-btn:hover { transform: rotate(90deg); }

    .booking-details-grid { grid-template-columns: 1fr 1fr; }

    .form-grid-2 { grid-template-columns: 1fr; }

    .nav-links { display: none; flex-direction: column; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: white;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        z-index: 99;
    }

    .nav-toggle { display: flex; }

    .section-title { font-size: 26px; }

    .contact-card { padding: 36px 20px; }

    .footer-inner { flex-direction: column; text-align: center; }

    .hero-stats { flex-wrap: wrap; justify-content: center; }

    .steps-bar { gap: 4px; }
    .step-item > span:last-child { display: none; }

    .form-actions { flex-direction: column; }
    .form-actions .btn-primary,
    .form-actions .btn-back { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
    .features-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .details-row { grid-template-columns: 1fr; }

    .contact-links { flex-direction: column; align-items: center; }

    .progress-bar { padding: 14px 12px; gap: 4px; }
    .progress-step > span:last-child { display: none; }
}
