/* ============================================================
   Luxury Transfer Theme — main.css
   Tüm güncelleme: B stili (lacivert #1E1B4B, keskin köşe)
   ============================================================ */

:root {
  --primary: #1E1B4B;
  --primary-dark: #2D2A6E;
  --primary-light: #EEEDF8;
  --accent: #F7C948;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --bg: #F3F4F9;
  --white: #fff;
  --card-shadow: 0 4px 24px rgba(30,27,75,.10);
  --radius: 8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.lt-header { position: sticky; top: 0; z-index: 200; }
nav.lt-nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 60px;
  box-shadow: 0 2px 32px rgba(30,27,75,.10);
  border-bottom: 1px solid rgba(30,27,75,.08);
}
.lt-logo { display: flex; align-items: center; gap: 10px; }
.lt-logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.lt-logo-text { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -.5px; }
.lt-logo-text span { color: var(--accent); }
.lt-logo-sub { font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; display: block; }
.nav-center { display: flex; align-items: center; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  color: var(--text); text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links > li.active > a { color: var(--primary); font-weight: 600; }
.nav-arrow { width: 14px; height: 14px; opacity: .55; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
}
.nav-phone svg { width: 15px; height: 15px; }

/* DROPDOWN */

.nav-links > li:hover 

/* MEGA MENU */
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 560px; background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(30,27,75,.14);
  border: 1px solid #EBEBEB;
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 300; overflow: hidden;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-header {
  background: var(--primary); padding: 13px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.mega-header-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .8px; }
.mega-header-link { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); text-decoration: none; }
.mega-header-link svg { width: 11px; height: 11px; }
.mega-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 18px 20px 16px; }
.mega-col { padding-right: 20px; }
.mega-col:last-child { padding-right: 0; padding-left: 20px; border-left: 1px solid #F0F0F5; }

.mega-links { display: flex; flex-direction: column; gap: 1px; }
.mega-link { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 13px; font-weight: 500; color: #333; text-decoration: none; transition: background .12s, color .12s; }
.mega-link:hover { background: var(--primary-light); color: var(--primary); }
.mega-link:hover .mega-dot { background: var(--primary); }
.mega-dot { width: 4px; height: 4px; border-radius: 50%; background: #D1D5DB; flex-shrink: 0; transition: background .12s; }
.mega-tag { margin-left: auto; font-size: 9px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 2px 7px; border-radius: 4px; }
.mega-footer { background: #FAFAFA; border-top: 1px solid #F0F0F5; padding: 11px 20px; display: flex; align-items: center; justify-content: space-between; }
.mega-footer-note { font-size: 12px; color: #aaa; }
.mega-footer-btn { font-size: 12px; font-weight: 700; color: #fff; background: var(--primary); border: none; padding: 7px 16px; border-radius: 6px; cursor: pointer; text-decoration: none; transition: background .12s; display: inline-block; }
.mega-footer-btn:hover { background: var(--primary-dark); }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--text); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(10,6,40,.5); z-index: 499; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: 0; width: 320px; height: 100vh; background: #fff; z-index: 500; transform: translateX(105%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; overflow: hidden; }
.mobile-menu.open { transform: translateX(0); }
.mob-drawer-header { padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #EBEBEB; flex-shrink: 0; }
.mob-drawer-logo { font-size: 15px; font-weight: 800; color: #0f0f0f; }
.mob-drawer-logo span { color: var(--accent); }
.mobile-close { width: 32px; height: 32px; border-radius: 6px; border: 1px solid #E5E5E5; background: #fff; cursor: pointer; font-size: 16px; color: #555; display: flex; align-items: center; justify-content: center; }
.mob-drawer-body { flex: 1; overflow-y: auto; }
.mob-d-row { border-bottom: 1px solid #F2F2F2; }
.mob-d-main { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; font-size: 14px; font-weight: 600; color: #1a1a1a; cursor: pointer; transition: background .12s; }
.mob-d-main:hover, .mob-d-row.open .mob-d-main { background: #FAFAFA; color: var(--primary); }
.mob-d-chevron { width: 15px; height: 15px; color: #bbb; transition: transform .22s; flex-shrink: 0; }
.mob-d-row.open .mob-d-chevron { transform: rotate(90deg); color: var(--primary); }
.mob-d-panel { max-height: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.4,0,.2,1); background: #FAFAFA; }
.mob-d-row.open .mob-d-panel { max-height: 600px; }
.mob-d-section { padding: 14px 18px 6px; }

.mob-d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.mob-d-chip { display: flex; align-items: center; gap: 6px; padding: 9px 10px; border-radius: 6px; border: 1px solid #E8E8E8; background: #fff; font-size: 12.5px; font-weight: 500; color: #333; cursor: pointer; transition: border-color .12s, color .12s, background .12s; text-decoration: none; }
.mob-d-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.mob-d-chip-dot { width: 4px; height: 4px; border-radius: 50%; background: #ccc; flex-shrink: 0; transition: background .12s; }
.mob-d-chip:hover .mob-d-chip-dot { background: var(--primary); }
.mob-d-chip-tag { margin-left: auto; font-size: 9px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.mob-d-all-btn { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 4px 18px 14px; padding: 11px; border-radius: 6px; border: 1px solid var(--primary); color: var(--primary); background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .12s, color .12s; width: calc(100% - 36px); }
.mob-d-all-btn:hover { background: var(--primary); color: #fff; }
.mob-d-all-btn svg { width: 13px; height: 13px; }
.mob-d-simple { padding: 14px 18px; font-size: 14px; font-weight: 600; color: #1a1a1a; cursor: pointer; transition: background .12s; border-bottom: 1px solid #F2F2F2; }
.mob-d-simple:hover { background: #FAFAFA; color: var(--primary); }

/* ── HERO ── */
.hero { position: relative; height: 620px; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: brightness(.72); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,6,40,.45) 0%, rgba(10,6,40,.18) 60%, transparent 100%); }
.badge { position: absolute; background: rgba(255,255,255,.18); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.32); color: #fff; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 6px; white-space: nowrap; }

/* ── BOOKING ── */
.booking-section { background: transparent; display: flex; justify-content: center; position: relative; z-index: 20; margin-top: -60px; padding: 0 20px; }
.booking-wrap { width: min(920px, 100%); background: var(--white); border-radius: 8px; box-shadow: 0 8px 32px rgba(30,27,75,.14); padding: 14px 20px; }
.booking-tabs { display: flex; align-items: center; gap: 0; margin-bottom: 10px; }
.tab-active, .tab-plain { padding: 6px 0; width: 120px; text-align: center; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; transition: all .15s; }
.tab-active { background: var(--primary); color: #fff; }
.tab-plain { background: transparent; color: var(--text-muted); }
.tab-plain:hover { color: var(--text); }
.booking-bottom-row { display: flex; gap: 0; align-items: stretch; border: 1.5px solid #E5E7EB; border-radius: 6px; overflow: visible; background: #fff; margin-top: 0; }
.location-field { flex: 1; display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; min-width: 0; cursor: pointer; border-right: 1.5px solid #E5E7EB; transition: background .12s; }
.location-field:hover { background: #FAFBFF; }
.location-field .field-icon { flex-shrink: 0; color: var(--primary); }
.location-field .field-icon svg { width: 14px; height: 14px; display: block; }
.field-label { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.field-value { font-size: 12.5px; font-weight: 600; color: var(--text); margin-top: 1px; }
.date-field { flex: 1; display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; min-width: 0; cursor: pointer; border-right: 1.5px solid #E5E7EB; transition: background .12s; }
.date-field:hover { background: #FAFBFF; }
.date-field .field-icon { flex-shrink: 0; color: var(--primary); }
.date-field .field-icon svg { width: 14px; height: 14px; display: block; }
.return-date-field { max-width: 0; min-width: 0; padding-left: 0; padding-right: 0; border-right: none; overflow: hidden; opacity: 0; flex: none; transition: max-width .4s cubic-bezier(.4,0,.2,1), min-width .4s, opacity .3s, padding .35s; }
.return-date-field.visible { max-width: 240px; min-width: 170px; padding-left: 14px; padding-right: 14px; border-right: 1.5px solid #E5E7EB; opacity: 1; flex: 1; }
.search-btn { background: var(--primary); color: #fff; border: none; padding: 0 20px; border-radius: 0 4px 4px 0; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; flex-shrink: 0; height: auto; align-self: stretch; transition: background .15s; }
.search-btn:hover { background: var(--primary-dark); }

/* ── SECTIONS ── */
.section { padding: 80px 60px; }

.section-title { font-size: clamp(28px,3vw,38px); font-weight: 800; text-align: center; line-height: 1.2; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 580px; margin: 14px auto 0; }

/* ── ROUTES ── */
.routes-section { padding-top: 90px; background: var(--bg); }
.routes-carousel { position: relative; margin-top: 36px; }
.routes-carousel-outer { overflow: hidden; border-radius: 8px; }
.routes-track { display: grid; gap: 16px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.route-card { height: 340px; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; width: 100%; }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.route-card:hover img { transform: scale(1.06); }
.route-card .popular-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #1A1A2E; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 4px; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,6,40,.7) 0%,transparent 55%); }
.card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; }
.card-city { font-size: 20px; font-weight: 700; }
.card-desc { font-size: 11px; color: rgba(255,255,255,.75); margin: 2px 0 6px; }
.card-price { font-size: 13px; font-weight: 700; color: var(--accent); }
.carousel-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 6px; background: #fff; border: 1.5px solid #E5E7EB; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; color: var(--text-muted); box-shadow: 0 2px 12px rgba(0,0,0,.10); transition: all .15s; z-index: 10; }
.carousel-arr:hover { border-color: var(--primary); color: var(--primary); }
.carousel-arr-left { left: -21px; }
.carousel-arr-right { right: -21px; }
.routes-info { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; flex-wrap: wrap; gap: 12px; }
.city-name-big { font-size: 32px; font-weight: 800; }
.city-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.city-price { font-size: 15px; font-weight: 700; color: var(--primary); margin-top: 6px; }
.carousel-nav { display: flex; align-items: center; gap: 8px; }
.nav-btn { width: 40px; height: 40px; border-radius: 6px; border: 1.5px solid #E5E7EB; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all .2s; color: var(--text-muted); }
.nav-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ── FLEET ── */
.fleet-section { background: #fff; }
.fleet-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.fleet-tab { padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; border: 1.5px solid #E5E7EB; background: #fff; cursor: pointer; color: var(--text-muted); font-family: inherit; transition: all .15s; }
.fleet-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.fleet-tab:hover { border-color: var(--primary); color: var(--primary); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; margin-top: 36px; }
.fleet-card { background: #FAFAFA; border-radius: 8px; overflow: hidden; border: 1.5px solid #F0F0F5; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.fleet-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }
.fleet-card-img { height: 180px; display: flex; align-items: center; justify-content: center; padding: 20px; background: #F3F4F9; }
.fleet-card-img img { max-height: 140px; max-width: 100%; object-fit: contain; }
.fleet-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.fleet-name { font-size: 18px; font-weight: 700; }
.fleet-type { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 2px; }
.fleet-features { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 18px; flex: 1; align-content: flex-start; }
.feat { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.feat svg { width: 14px; height: 14px; color: var(--primary); }
.fleet-btn { width: 100%; background: var(--primary); color: #fff; border: none; padding: 12px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s; margin-top: auto; }
.fleet-btn:hover { background: var(--primary-dark); }

/* ── SEO SECTION ── */

.seo-title { font-size: clamp(28px,3vw,38px); font-weight: 800; color: var(--text); margin-bottom: 18px; line-height: 1.2; }
.seo-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.seo-tag { font-size: 12px; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 5px 13px; border-radius: 4px; border: 1px solid #C7C5E8; }

/* ── FAQ ── */
.faq-section { background: #fff; }
.faq-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; margin-top: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FAFAFA; border: 1.5px solid #F0F0F5; border-radius: 8px; overflow: hidden; }
.faq-item.open { background: var(--primary); border-color: var(--primary); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600; gap: 12px; }
.faq-item.open .faq-question { color: #fff; }
.faq-icon { width: 28px; height: 28px; border-radius: 4px; border: 1.5px solid #E5E7EB; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--text-muted); }
.faq-item.open .faq-icon { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s, padding .35s; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.9); padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }
.faq-images { display: flex; flex-direction: column; gap: 16px; }
.faq-img-wrap { border-radius: 8px; overflow: hidden; height: 220px; }
.faq-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.faq-img-small { height: 160px; border-radius: 8px; overflow: hidden; }
.faq-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ── */
footer { background: #0D0B2B; color: #fff; }

/* Üst şerit */
.ft-top { display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo-wrap { display: flex; align-items: center; gap: 10px; }
.ft-logo-icon { width: 38px; height: 38px; background: #1E1B4B; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-logo-text { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.ft-logo-text span { color: #F7C948; }
.ft-accent-line { height: 2px; background: #F7C948; opacity: .2; width: 36px; margin-top: 5px; }
.ft-contact-row { display: flex; gap: 24px; }
.ft-contact-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.ft-contact-item:hover { color: rgba(255,255,255,.7); }
.ft-contact-item svg { flex-shrink: 0; color: rgba(255,255,255,.25); }

/* Ana bölüm */
.ft-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding: 40px 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-about { display: flex; flex-direction: column; gap: 16px; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.85; }
.ft-socials { display: flex; gap: 8px; }
.ft-soc { width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,.45); transition: border-color .15s, color .15s; }
.ft-soc:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.ft-col-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .9px; margin-bottom: 14px; }
.ft-links { display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .15s; }
.ft-links a::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; }
.ft-links a:hover { color: rgba(255,255,255,.75); }
.ft-newsletter-desc { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 12px; }
.ft-newsletter-form { display: flex; }
.ft-nl-input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px 0 0 5px; padding: 9px 12px; font-size: 12px; color: #fff; outline: none; font-family: inherit; }
.ft-nl-input::placeholder { color: rgba(255,255,255,.3); }
.ft-nl-input:focus { border-color: rgba(255,255,255,.2); }
.ft-nl-btn { background: #1E1B4B; color: #fff; border: 1px solid rgba(255,255,255,.1); border-left: none; border-radius: 0 5px 5px 0; padding: 9px 14px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .15s; white-space: nowrap; }
.ft-nl-btn:hover { background: #2D2A6E; }

/* Alt şerit */
.ft-bottom { display: flex; align-items: center; justify-content: space-between; padding: 14px 60px; gap: 16px; }
.ft-tursab { display: flex; align-items: center; gap: 10px; }
.ft-tursab-badge { background: #C8102E; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .4px; padding: 5px 10px; border-radius: 4px; }
.ft-tursab-info { display: flex; flex-direction: column; line-height: 1.3; }
.ft-tursab-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); }
.ft-tursab-no { font-size: 10px; color: rgba(255,255,255,.22); }
.ft-copy { font-size: 11px; color: rgba(255,255,255,.22); }
.ft-bottom-links { display: flex; gap: 16px; }
.ft-bottom-links a { font-size: 11px; color: rgba(255,255,255,.22); text-decoration: none; transition: color .15s; }
.ft-bottom-links a:hover { color: rgba(255,255,255,.5); }

/* Footer responsive */
@media (max-width: 960px) {
  .ft-top { padding: 20px 24px; }
  .ft-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px 24px; }
  .ft-bottom { padding: 14px 24px; flex-wrap: wrap; justify-content: center; gap: 10px; }
}
@media (max-width: 600px) {
  .ft-top { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
  .ft-contact-row { flex-direction: column; gap: 8px; }
  .ft-main { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .ft-bottom { padding: 12px 20px; }
  .ft-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
}

/* ── SAYFA HERO ── */
.page-hero {
  position: relative;
  height: 240px;
  background: var(--primary);
  overflow: hidden;
  display: flex; align-items: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,11,43,.95) 0%, rgba(30,27,75,.7) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb span { color: rgba(255,255,255,.85); font-weight: 600; }
.page-hero-title { font-size: 38px; font-weight: 800; color: #fff; line-height: 1.15; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── İLETİŞİM ── */
.contact-section { padding: 72px 60px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-title { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.contact-info-sub { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: #FAFAFA;
  border: 1.5px solid #F0F0F5;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: #C7C5E8; box-shadow: 0 4px 16px rgba(30,27,75,.08); }
.contact-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 3px; }
.contact-card-value { font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; display: block; }
.contact-card-value:hover { color: var(--primary); }
.contact-card-note { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.contact-social-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  font-size: 13px; font-weight: 600; color: var(--text);
  text-decoration: none;
  transition: all .15s;
}
.contact-social-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ── FORM KARTI ── */
.contact-form-card {
  background: #fff;
  border: 1.5px solid #F0F0F5;
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(30,27,75,.08);
}
.contact-form-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.cf-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label { font-size: 12px; font-weight: 700; color: var(--text); }
.cf-label span { color: #E24B4A; }
.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #FAFAFA;
  outline: none;
  transition: border-color .15s, background .15s;
}
.cf-input:focus { border-color: var(--primary); background: #fff; }
.cf-select { cursor: pointer; }
.cf-textarea { min-height: 130px; resize: vertical; }
.cf-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
  width: 100%;
}
.cf-submit:hover { background: var(--primary-dark); }
.cf-success {
  display: flex; align-items: center; gap: 10px;
  background: #EAF3DE; border: 1px solid #97C459;
  color: #27500A;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
}
.cf-errors {
  background: #FCEBEB; border: 1px solid #F09595;
  color: #A32D2D;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 4px;
}

/* Mobil */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 52px 24px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero-title { font-size: 28px; }
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .contact-section { padding: 40px 20px; }
}

/* ── ROTA SAYFASI ── */
.rota-band {
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.rb-path { display: flex; align-items: center; gap: 12px; }
.rb-city { font-size: 18px; font-weight: 800; color: #1a1a1a; }
.rb-arrow { display: flex; align-items: center; gap: 4px; }
.rb-line { width: 28px; height: 2px; background: var(--primary); }
.rb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.rb-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.rb-pill { background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 4px; border: 1px solid #C7C5E8; }
.rb-pill-gray { background: #F3F4F9; color: #6B7280; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 4px; border: 1px solid #E5E7EB; }
.rota-band-btn { background: var(--primary); color: #fff; border: none; padding: 10px 22px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; white-space: nowrap; }
.rota-band-btn:hover { background: var(--primary-dark); }

.rota-main {
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.rota-vehicles-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.rota-vehicles-title { font-size: 20px; font-weight: 800; color: var(--text); margin: 0; }

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

/* Araç kartı — yatay */
.rvc {
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid #F0F0F5;
  overflow: hidden;
  display: flex;
  transition: box-shadow .2s, border-color .2s;
}
.rvc:hover { box-shadow: 0 4px 20px rgba(30,27,75,.10); border-color: #C7C5E8; }
.rvc-top { border-color: var(--primary); }
.rvc-img {
  width: 190px; flex-shrink: 0;
  background: #F3F4F9;
  display: flex; align-items: center; justify-content: center;
  padding: 14px; position: relative;
}
.rvc-img img { max-height: 110px; max-width: 100%; object-fit: contain; }
.rvc-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.rvc-badge-navy { background: var(--primary-light); color: var(--primary); border: 1px solid #C7C5E8; }
.rvc-badge-green { background: #EAF3DE; color: #27500A; border: 1px solid #97C459; }
.rvc-body { flex: 1; padding: 16px; display: flex; gap: 16px; }
.rvc-info { flex: 1; }
.rvc-name { font-size: 15px; font-weight: 700; color: var(--text); }
.rvc-type { font-size: 11px; color: var(--primary); font-weight: 600; margin-top: 2px; margin-bottom: 10px; }
.rvc-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 8px; }
.rvc-spec { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #6B7280; background: #F3F4F9; padding: 5px 8px; border-radius: 4px; }
.rvc-price-col { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; min-width: 120px; flex-shrink: 0; }
.rvc-price-lbl { font-size: 10px; color: #9CA3AF; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.rvc-price-old { font-size: 12px; color: #9CA3AF; text-decoration: line-through; }
.rvc-price-main { font-size: 24px; font-weight: 800; color: var(--text); line-height: 1; }
.rvc-price-note { font-size: 10px; color: #9CA3AF; margin-top: 2px; }
.rvc-btn { background: var(--primary); color: #fff; border: none; padding: 9px 18px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; white-space: nowrap; transition: background .15s; display: inline-block; }
.rvc-btn:hover { background: var(--primary-dark); }

/* Sidebar */
.rota-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 90px; }
.rsb-card { background: #fff; border-radius: 8px; border: 1.5px solid #F0F0F5; padding: 18px; }
.rsb-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.rsb-btn-main { display: block; text-align: center; background: var(--primary); color: #fff; border: none; width: 100%; padding: 12px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; margin-bottom: 8px; text-decoration: none; transition: background .15s; }
.rsb-btn-main:hover { background: var(--primary-dark); }

.rsb-incl-list { display: flex; flex-direction: column; gap: 8px; }
.rsb-incl-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }

/* Sayfa içeriği (WordPress editörü) */
.rota-content-section { background: #fff; border-top: 1px solid #EBEBEB; padding: 48px 60px; }
.rota-content-inner { max-width: 800px; margin: 0 auto; font-size: 15px; line-height: 1.8; color: #374151; }
.rota-content-inner h2 { font-size: 22px; font-weight: 800; color: var(--text); margin: 28px 0 12px; }
.rota-content-inner h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.rota-content-inner p { margin-bottom: 14px; }

/* SEO etiketleri */
.rota-seo-tags { padding: 20px 60px 32px; display: flex; flex-wrap: wrap; gap: 8px; background: #fff; border-top: 1px solid #F0F0F5; }

/* Responsive */
@media (max-width: 900px) {
  .rota-band { padding: 14px 24px; }
  
  .rota-main { grid-template-columns: 1fr; padding: 32px 24px; }
  .rota-sidebar { position: static; }
  .rota-content-section { padding: 36px 24px; }
  .rota-seo-tags { padding: 16px 24px 28px; }
}
@media (max-width: 600px) {
  .rb-city { font-size: 15px; }
  .rvc { flex-direction: column; }
  .rvc-img { width: 100%; height: 160px; }
  .rvc-body { flex-direction: column; gap: 12px; }
  .rvc-price-col { align-items: flex-start; flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .rota-main { padding: 24px 16px; }
  
  .rota-band { padding: 14px 16px; }
}

/* ── BOOKING DROPDOWN ── */
.lt-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 260px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 999;
  overflow: hidden;
}
.lt-drop.open { display: block; }

.lt-drop-opt { padding: 9px 12px; font-size: 13px; font-weight: 500; color: #1a1a1a; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: background .1s; }
.lt-drop-opt:hover { background: var(--primary-light); color: var(--primary); }
.lt-drop-opt svg { flex-shrink: 0; opacity: .7; }

/* Seçilen araç kartı — mobil */
@media (max-width: 600px) {
  .svc-img-wrap { display: none !important; }
  #selectedVehicleCard { flex-wrap: nowrap !important; }
  #selectedVehicleCard > div:nth-child(2) { padding: 10px 12px !important; }
  #selectedVehicleCard #svcName { font-size: 13px !important; }
  #selectedVehicleCard #svcPrice { font-size: 18px !important; }
}

/* Sidebar iletişim satırları */

.rsb-contact-wa:hover { color: #1a8a40; }

/* ── LOGO ── */
.lt-logo .custom-logo-link { display: flex; align-items: center; }
.lt-logo .custom-logo-link img.custom-logo {
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (max-width: 860px) {
  .lt-logo .custom-logo-link img.custom-logo { max-height: 36px; max-width: 140px; }
}

/* ── H1 + SEO BÖLÜMÜ (form altı) ── */
.seo-h1-section {
  background: #fff;
  padding: 52px 60px;
  border-bottom: 2px solid #F0F0F5;
  text-align: center !important;
}
.seo-h1-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin: 0 auto 14px !important;
  max-width: 700px;
  text-align: center !important;
  display: block;
}
.seo-h1-body {
  max-width: 680px;
  margin: 0 auto !important;
  text-align: center !important;
}
.seo-h1-body p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 16px !important;
  text-align: center !important;
}
.seo-h1-body p:last-child { margin-bottom: 0 !important; }
@media (max-width: 900px) {
  .seo-h1-section { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .seo-h1-section { padding: 32px 20px; }
  .seo-h1-title { font-size: 20px; }
}

/* ── ARAÇ KARTI SLİDER ── */
.fleet-slider { position: relative; overflow: hidden; }
.fleet-slide { width: 100%; height: 100%; object-fit: contain; display: block; }
.fleet-slide-hidden { display: none !important; }
.fleet-slide-prev,
.fleet-slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid #E5E7EB;
  font-size: 16px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: background .15s;
  z-index: 5;
}
.fleet-slide-prev { left: 6px; }
.fleet-slide-next { right: 6px; }
.fleet-slide-prev:hover,
.fleet-slide-next:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.fleet-slide-dots {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; z-index: 5;
}
.fleet-sdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); transition: background .2s;
}
.fleet-sdot.active { background: var(--primary); }

/* ── ARAÇ FİLOSU MOBİL ── */
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
  .fleet-card-img { height: 130px; padding: 12px; }
  .fleet-card-img img { max-height: 100px; }
  .fleet-card-body { padding: 12px; }
  .fleet-name { font-size: 13px; }
  .fleet-type { font-size: 11px; }
  .fleet-features { gap: 6px; margin: 8px 0 12px; }
  .feat { font-size: 11px; }
  .fleet-btn { font-size: 12px; padding: 9px; }
  .fleet-tabs { gap: 6px; flex-wrap: wrap; }
  .fleet-tab { padding: 7px 12px; font-size: 12px; }
}

/* ── MOBİL RESPONSIVE — ANA ── */
@media (max-width: 860px) {
  /* Nav */
  nav.lt-nav { padding: 12px 20px; }
  .nav-center { display: none; }
  .nav-phone { display: none; }
  
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { height: 300px; }

  /* Booking */
  .booking-section { margin-top: 0; padding: 0; background: #fff; border-top: 3px solid var(--primary); }
  .booking-wrap { width: 100%; border-radius: 0; box-shadow: none; padding: 14px 16px; }
  .booking-bottom-row { flex-direction: column; overflow: visible; }
  .location-field, .date-field { width: 100%; border-right: none; border-bottom: 1.5px solid #E5E7EB; }
  .search-btn { width: 100%; border-radius: 0 0 5px 5px; padding: 13px; font-size: 14px; }

  /* Sections */
  .section, 
  .section-title { font-size: 22px; }

  /* Routes carousel */
  .routes-carousel { margin-left: -20px !important; margin-right: -20px !important; }
  .routes-carousel-outer { overflow: hidden; padding-left: 20px; }
  .routes-track { display: flex !important; flex-wrap: nowrap !important; gap: 10px; }
  .route-card { width: 78vw !important; min-width: 78vw !important; height: 240px !important; flex-shrink: 0 !important; opacity: .5 !important; transform: scale(.97) !important; transition: opacity .35s, transform .35s, box-shadow .35s !important; }
  .route-card.active { opacity: 1 !important; transform: scale(1) !important; box-shadow: 0 8px 28px rgba(0,0,0,.22) !important; }
  .carousel-arr { display: none !important; }
  .routes-info { flex-direction: column; align-items: flex-start; gap: 6px; }
  .city-name-big { font-size: 22px !important; }
  .carousel-nav { width: 100%; justify-content: flex-end; }

  /* Fleet */
  .fleet-tabs { gap: 6px; flex-wrap: wrap; }
  .fleet-tab { padding: 7px 12px; font-size: 12px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
  .fleet-card-img { height: 130px; padding: 12px; }
  .fleet-card-img img { max-height: 100px; }
  .fleet-card-body { padding: 12px; }
  .fleet-name { font-size: 13px; }
  .fleet-type { font-size: 11px; }
  .fleet-features { gap: 6px; margin: 8px 0 12px; }
  .feat { font-size: 11px; }
  .fleet-btn { font-size: 12px; padding: 9px; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-img-wrap { display: none; }

  /* SEO */
  
  

  /* Footer */
  footer { padding: 0; }
  .ft-top { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .ft-contact-row { flex-direction: column; gap: 8px; }
  .ft-main { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .ft-bottom { padding: 12px 20px; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .ft-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Return date */
  .return-date-field { display: none !important; }
  .return-date-field.visible { display: flex !important; max-width: 100% !important; width: 100%; border-right: none; border-bottom: 1.5px solid #E5E7EB !important; opacity: 1; padding: 10px 14px !important; }
}

/* ── ARAÇLARIMIZ SAYFASI ── */
.arac-filter-bar { background:#fff; border-bottom:1px solid #EBEBEB; padding:0 60px; display:flex; gap:4px; overflow-x:auto; }
.arac-tab { padding:14px 20px; border:none; background:transparent; font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; border-bottom:2px solid transparent; color:#6B7280; white-space:nowrap; transition:all .15s; }
.arac-tab.active,.arac-tab:hover { color:var(--primary); border-bottom-color:var(--primary); }
.arac-liste-section { background:#F3F4F9; padding:60px; display:flex; flex-direction:column; gap:0; }

.arac-item { display:grid; grid-template-columns:1fr 1fr; background:#fff; border-radius:12px; overflow:hidden; margin-bottom:32px; border:1.5px solid #F0F0F5; transition:box-shadow .2s; }
.arac-item:hover { box-shadow:0 8px 40px rgba(30,27,75,.1); }
.arac-item-odd { direction:rtl; }
.arac-item-odd > * { direction:ltr; }

.arac-item-img { position:relative; min-height:360px; background:#EEEDF8; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.arac-item-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.arac-item:hover .arac-item-img img { transform:scale(1.03); }
.arac-img-placeholder { display:flex; align-items:center; justify-content:center; width:100%; height:100%; min-height:360px; }
.arac-type-badge { position:absolute; top:18px; left:18px; background:var(--primary); color:#fff; font-size:11px; font-weight:700; padding:5px 12px; border-radius:20px; letter-spacing:.4px; }

.arac-item-body { padding:48px 52px; display:flex; flex-direction:column; justify-content:center; gap:0; }
.arac-item-name { font-size:32px; font-weight:800; color:#1a1a1a; margin-bottom:12px; line-height:1.15; }
.arac-item-cap { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--primary); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid #F0F0F5; }
.arac-item-feats { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:24px; }
.arac-feat-pill { display:flex; align-items:center; gap:8px; padding:10px 14px; background:#F3F4F9; border-radius:7px; font-size:13px; font-weight:500; color:#374151; }
.arac-included { background:#F0FDF4; border:1px solid #BBF7D0; border-radius:8px; padding:16px 18px; margin-bottom:28px; }
.arac-included-title { font-size:11px; font-weight:700; color:#166534; text-transform:uppercase; letter-spacing:.5px; margin-bottom:10px; }
.arac-included-list { display:grid; grid-template-columns:1fr 1fr; gap:7px; }
.arac-inc-item { display:flex; align-items:center; gap:6px; font-size:12px; color:#166534; font-weight:500; }
.arac-item-btn { display:inline-flex; align-items:center; gap:8px; background:var(--primary); color:#fff; padding:14px 28px; border-radius:7px; font-size:14px; font-weight:700; text-decoration:none; transition:background .15s; align-self:flex-start; }
.arac-item-btn:hover { background:var(--primary-dark); }

@media (max-width: 860px) {
  .arac-filter-bar { padding:0 16px; }
  .arac-liste-section { padding:24px 16px; }
  .arac-item { grid-template-columns:1fr; }
  .arac-item-odd { direction:ltr; }
  .arac-item-img { min-height:240px; }
  .arac-item-body { padding:24px 20px; }
  .arac-item-name { font-size:22px; }
  .arac-item-feats { grid-template-columns:1fr 1fr; gap:8px; }
  .arac-included-list { grid-template-columns:1fr; }
}

/* ── ARAÇLAR SAYFASI SLIDER ── */
.arac-item-img { overflow: hidden; position: relative; }
.asi-track { display: flex; height: 100%; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.asi-slide { min-width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; }
.asi-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.asi-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: background .15s; }
.asi-arr:hover { background: rgba(0,0,0,.6); }
.asi-prev { left: 14px; }
.asi-next { right: 14px; }
.asi-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.asi-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s, transform .2s; }
.asi-dot.active { background: #F7C948; transform: scale(1.3); }

/* ── YASAL SAYFA ── */
.yasal-wrap { background: #F3F4F9; padding: 60px; }
.yasal-inner { display: grid; grid-template-columns: 1fr 280px; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: start; }
.yasal-content { background: #fff; border-radius: 8px; border: 1.5px solid #F0F0F5; padding: 48px 52px; }
.yasal-content h1,.yasal-content h2,.yasal-content h3 { color: #1a1a1a; font-weight: 700; margin: 28px 0 12px; line-height: 1.3; }
.yasal-content h2 { font-size: 20px; padding-bottom: 10px; border-bottom: 1.5px solid #F0F0F5; }
.yasal-content h3 { font-size: 16px; }
.yasal-content p { font-size: 14px; color: #4B5563; line-height: 1.85; margin-bottom: 14px; }
.yasal-content ul,.yasal-content ol { padding-left: 20px; margin-bottom: 14px; }
.yasal-content li { font-size: 14px; color: #4B5563; line-height: 1.8; margin-bottom: 6px; }
.yasal-content a { color: #1E1B4B; text-decoration: underline; }
.yasal-content strong { color: #1a1a1a; font-weight: 600; }
.yasal-content > *:first-child { margin-top: 0; }

.yasal-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.yasal-nav { background: #fff; border-radius: 8px; border: 1.5px solid #F0F0F5; overflow: hidden; }
.yasal-nav-title { font-size: 10px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: .8px; padding: 14px 16px; border-bottom: 1px solid #F0F0F5; }
.yasal-nav-link { display: flex; align-items: center; gap: 8px; padding: 12px 16px; font-size: 13px; font-weight: 500; color: #6B7280; text-decoration: none; border-bottom: 1px solid #F0F0F5; transition: background .12s, color .12s; }
.yasal-nav-link:last-child { border-bottom: none; }
.yasal-nav-link:hover { background: #F3F4F9; color: #1E1B4B; }
.yasal-nav-link.active { background: #EEEDF8; color: #1E1B4B; font-weight: 700; }
.yasal-nav-link svg { flex-shrink: 0; }
.yasal-contact-box { background: #fff; border-radius: 8px; border: 1.5px solid #F0F0F5; padding: 18px; }

@media (max-width: 860px) {
  .yasal-wrap { padding: 24px 16px; }
  .yasal-inner { grid-template-columns: 1fr; }
  .yasal-sidebar { position: static; }
  .yasal-content { padding: 24px 20px; }
}

/* ── HAKKIMIZDA SAYFASI ── */
.hk-about-section { background: #fff; padding: 80px 60px; }
.hk-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }

.hk-img-wrap { position: relative; }
.hk-img { width: 100%; height: 520px; object-fit: cover; border-radius: 4px; display: block; }
.hk-img-placeholder { width: 100%; height: 520px; background: #EEEDF8; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.hk-stats-float { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #E5E7EB; border-radius: 4px; overflow: hidden; margin-top: 16px; }
.hk-stat { background: #fff; padding: 20px 16px; text-align: center; }
.hk-stat-num { font-size: 26px; font-weight: 800; color: #1E1B4B; line-height: 1; }
.hk-stat-label { font-size: 11px; color: #6B7280; margin-top: 5px; font-weight: 500; }

.hk-section-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #F7C948; background: #1E1B4B; display: inline-block; padding: 4px 12px; border-radius: 2px; margin-bottom: 14px; }
.hk-about-title { font-size: 36px; font-weight: 800; color: #0F0E24; line-height: 1.15; margin-bottom: 20px; }
.hk-about-content { font-size: 15px; color: #4B5563; line-height: 1.85; margin-bottom: 32px; }
.hk-about-content p { margin-bottom: 14px; }

.hk-why-list { display: flex; flex-direction: column; gap: 16px; }
.hk-why-item { display: flex; align-items: flex-start; gap: 14px; }
.hk-why-icon { width: 44px; height: 44px; background: #EEEDF8; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #1E1B4B; }
.hk-why-title { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.hk-why-desc { font-size: 13px; color: #6B7280; line-height: 1.6; }

.hk-mv-section { background: #F3F4F9; padding: 72px 60px; }
.hk-mv-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.hk-mv-card { background: #fff; border-radius: 8px; padding: 36px 32px; border: 1.5px solid #F0F0F5; }
.hk-mv-icon { width: 56px; height: 56px; background: #EEEDF8; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #1E1B4B; margin-bottom: 20px; }
.hk-mv-title { font-size: 18px; font-weight: 800; color: #0F0E24; margin-bottom: 12px; }
.hk-mv-text { font-size: 14px; color: #6B7280; line-height: 1.75; }

.hk-cta-section { background: #1E1B4B; padding: 60px; }
.hk-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.hk-cta-text h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.hk-cta-text p { font-size: 15px; color: rgba(255,255,255,.55); }
.hk-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hk-cta-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #F7C948; color: #1E1B4B; padding: 13px 24px; border-radius: 5px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s; }
.hk-cta-btn-primary:hover { background: #e6b800; }
.hk-cta-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); color: #fff; padding: 13px 24px; border-radius: 5px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,.2); transition: background .15s; }
.hk-cta-btn-ghost:hover { background: rgba(255,255,255,.18); }

@media (max-width: 860px) {
  .hk-about-section { padding: 48px 20px; }
  .hk-about-inner { grid-template-columns: 1fr; gap: 36px; }
  .hk-img { height: 280px; }
  .hk-img-placeholder { height: 280px; }
  .hk-about-title { font-size: 26px; }
  .hk-mv-section { padding: 48px 20px; }
  .hk-mv-inner { grid-template-columns: 1fr; gap: 16px; }
  .hk-mv-card { padding: 24px 20px; }
  .hk-cta-section { padding: 40px 20px; }
  .hk-cta-inner { flex-direction: column; align-items: flex-start; }
  .hk-cta-text h2 { font-size: 20px; }
}

/* ── ROTA GALERİ CAROUSEL ── */
.rg-block { margin: 48px 0; }
.rg-block-title { font-size: 22px; font-weight: 800; color: #0F0E24; margin-bottom: 24px; }
.rg-carousel { position: relative; }
.rg-carousel-outer { overflow: hidden; border-radius: 8px; }
.rg-carousel-track { display: flex; flex-wrap: nowrap; gap: 12px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.rg-card { width: calc(25% - 9px); min-width: calc(25% - 9px); height: 190px; border-radius: 8px; overflow: hidden; position: relative; flex-shrink: 0; opacity: .6; transform: scale(.97); transition: opacity .35s, transform .35s; }
.rg-card.rg-active { opacity: 1; transform: scale(1); }
.rg-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rg-card:hover img { transform: scale(1.06); }
.rg-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,6,40,.35) 0%, transparent 55%); }
.rg-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.92); border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 22px; line-height: 1; cursor: pointer; color: #1E1B4B; display: flex; align-items: center; justify-content: center; z-index: 5; }
.rg-arr:hover { background: #fff; }
.rg-prev { left: -20px; }
.rg-next { right: -20px; }
.rg-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.rg-dot { width: 7px; height: 7px; border-radius: 50%; background: #D1D5DB; cursor: pointer; transition: background .2s, transform .2s; }
.rg-dot.active { background: #1E1B4B; transform: scale(1.3); }

@media (max-width: 860px) {
  .rg-carousel-track { gap: 10px; }
  .rg-card { width: 72vw !important; min-width: 72vw !important; height: 160px !important; opacity: .5 !important; transform: scale(.96) !important; }
  .rg-card.rg-active { opacity: 1 !important; transform: scale(1) !important; }
  .rg-carousel-outer { margin: 0 -20px; padding-left: 20px; overflow: hidden; }
  .rg-arr { display: none; }
}

/* ── SEO İÇERİK BLOĞU ── */
.rota-seo-content h2 { font-size:20px;font-weight:800;color:#0D0B2B;margin:32px 0 12px; }
.rota-seo-content h3 { font-size:17px;font-weight:700;color:#1E1B4B;margin:24px 0 10px; }
.rota-seo-content p  { margin-bottom:16px; }
.rota-seo-content ul,.rota-seo-content ol { padding-left:20px;margin-bottom:16px; }
.rota-seo-content li { margin-bottom:6px; }
.rota-seo-content strong { color:#0D0B2B; }
