/* ============================================================
   FERİBOT TEMA — feribotlines.com tasarım ruhundan ilham
   Lacivert + Turuncu palette, modern kart yapısı
   ============================================================ */

/* ── iOS / Mobile: input odaklanınca zoom engeli ──────────────
   iOS Safari, font-size < 16px olan input'lara tıklayınca
   sayfayı otomatik zoom yapar. 16px = zoom yok.
   touch-action: manipulation ise çift-dokunma zoomunu engeller.
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  input, input[type="text"], input[type="tel"], input[type="email"],
  input[type="number"], input[type="search"], input[type="date"],
  input[type="password"], input[type="url"],
  select, textarea {
    font-size: 16px !important;
    touch-action: manipulation;
  }
  button, a {
    touch-action: manipulation;
  }
}

:root {
  --fl-navy:        #1a2744;
  --fl-navy-dark:   #0f1b35;
  --fl-navy-mid:    #243461;
  --fl-orange:      #ff6600;
  --fl-orange-h:    #e55a00;
  --fl-orange-lt:   #fff3ec;
  --fl-gray-bg:     #f4f6fb;
  --fl-gray-border: #e4e8f0;
  --fl-white:       #ffffff;
  --fl-text:        #1f2d40;
  --fl-muted:       #6b7a8d;
  --fl-success:     #22c55e;
  --fl-radius:      10px;
  --fl-shadow:      0 4px 24px rgba(26,39,68,.10);
  --fl-shadow-sm:   0 2px 8px  rgba(26,39,68,.07);
  --fl-transition:  .22s ease;
}

/* ──────────── RESET HELPERS ──────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Eski site-header padding'ini sıfırla — fl-header sticky, padding gerekmez */
body.theme-pro,
body.fl-body.theme-pro {
  padding-top: 0 !important;
}

/* Eski site-header'ı sıfırla — fl-header geçerli */
.fl-body .site-header     { display: none !important; }
.fl-body .mobile-bottom   { display: none !important; }
.fl-body .main-search     { display: none !important; }
.fl-body .main-bottom     { display: none !important; }
.fl-body > footer:not(.fl-footer) { display: none !important; }

/* Font Awesome güvencesi */
.fl-body i[class*="fa-"] { font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif; }

/* ──────────── HEADER ──────────── */
.fl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--fl-white);
  box-shadow: 0 2px 12px rgba(26,39,68,.10);
}

.fl-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
}

/* Logo */
.fl-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Üst bar sağ grup */
.fl-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fl-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fl-navy);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--fl-transition);
}
.fl-header__phone:hover { background: var(--fl-gray-bg); color: var(--fl-navy); }
.fl-header__phone i { color: var(--fl-orange); font-size: 1rem; }

.fl-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--fl-transition);
  white-space: nowrap;
}
.fl-header__btn--outline {
  border: 1.5px solid var(--fl-navy);
  color: var(--fl-navy);
  background: transparent;
}
.fl-header__btn--outline:hover {
  background: var(--fl-navy);
  color: var(--fl-white);
}
.fl-header__btn--solid {
  background: var(--fl-orange);
  color: var(--fl-white);
  border: 1.5px solid var(--fl-orange);
}
.fl-header__btn--solid:hover {
  background: var(--fl-orange-h);
  border-color: var(--fl-orange-h);
  color: var(--fl-white);
}

/* Nav bar */
.fl-nav {
  background: var(--fl-navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.fl-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fl-nav__item a {
  display: block;
  padding: 12px 13px;
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--fl-transition), background var(--fl-transition);
  border-bottom: 3px solid transparent;
}
.fl-nav__item a:hover,
.fl-nav__item a.active {
  color: var(--fl-white);
  border-bottom-color: var(--fl-orange);
}

/* Dropdown menü */
.fl-nav__item--drop { position: relative; }
.fl-nav__item--drop > a { display: flex; align-items: center; gap: 5px; }
.fl-nav__item--drop > a::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: .65rem;
  opacity: .7;
  transition: transform .2s;
}
.fl-nav__item--drop:hover > a::after { transform: rotate(180deg); }
.fl-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 185px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(26,39,68,.16);
  overflow: hidden;
  z-index: 200;
  border-top: 3px solid var(--fl-orange);
}
.fl-nav__item--drop:hover .fl-dropdown { display: block; }
.fl-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 9px;
  padding: 11px 16px !important;
  color: var(--fl-text) !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  white-space: nowrap;
  border-bottom: none !important;
  border-top: 1px solid var(--fl-gray-border);
  transition: background .15s;
}
.fl-dropdown a:first-child { border-top: none; }
.fl-dropdown a:hover { background: var(--fl-gray-bg) !important; color: var(--fl-navy) !important; }
.fl-dropdown a i { color: var(--fl-orange); width: 16px; text-align: center; }

/* Language selector */
.fl-lang-btn {
  background: none;
  border: 1.5px solid var(--fl-gray-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--fl-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fl-lang-btn img { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; }

/* Mobile hamburger */
.fl-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.fl-mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--fl-navy);
  border-radius: 2px;
  transition: all var(--fl-transition);
}

/* ──────────── HERO / SEARCH ──────────── */
.fl-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1b35ad 0%, var(--fl-navy-mid) 100%),
              url('/assets/img/ferryboat.jpg') center center / cover no-repeat;
  padding: 48px 0 72px;
  overflow: visible;
}

/* Anasayfa search hero — banner slider'ın üstünde kalması için */
#fl-hero-search {
  z-index: 20;
}
.fl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Dalgalı alt kenar ── */
.fl-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23f4f6fb' fill-opacity='1' d='M0,20 C180,35 360,5 540,20 C720,35 900,5 1080,20 C1260,35 1380,15 1440,20 L1440,40 L0,40 Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  pointer-events: none;
  z-index: 1;
  animation: fl-wave 6s ease-in-out infinite alternate;
}
/* Hero gri bölümden sonrası beyaz ise dalga rengini ayarla */
@keyframes fl-wave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-3%); }
}

/* ── Yüzen Feribot Animasyonları ── */
.fl-hero-boats {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fl-boat {
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
  display: block;
  animation: fl-boat-sail linear infinite;
  will-change: transform;
}

/* Her tekneye farklı boyut, konum, hız ve gecikme */
.fl-boat--1 { width: 90px;  bottom: 18%;  animation-duration: 28s; animation-delay:  0s;   color: rgba(255,255,255,.06); }
.fl-boat--2 { width: 55px;  bottom: 38%;  animation-duration: 22s; animation-delay: -8s;   color: rgba(255,255,255,.05); }
.fl-boat--3 { width: 75px;  bottom: 10%;  animation-duration: 34s; animation-delay: -14s;  color: rgba(255,255,255,.07); }
.fl-boat--4 { width: 40px;  bottom: 55%;  animation-duration: 19s; animation-delay: -5s;   color: rgba(255,255,255,.04); }
.fl-boat--5 { width: 110px; bottom: 25%;  animation-duration: 40s; animation-delay: -22s;  color: rgba(255,255,255,.05); }
.fl-boat--6 { width: 60px;  bottom: 45%;  animation-duration: 25s; animation-delay: -10s;  color: rgba(255,255,255,.04); }

.fl-boat svg { display: block; width: 100%; height: auto; }

/* Hafif dikey yalpalama + yatay yürüyüş */
@keyframes fl-boat-sail {
  0%   { transform: translateX(-160px) translateY(0px); }
  15%  { transform: translateX(calc(15vw))  translateY(-4px); }
  30%  { transform: translateX(calc(30vw))  translateY(2px); }
  45%  { transform: translateX(calc(45vw))  translateY(-3px); }
  60%  { transform: translateX(calc(60vw))  translateY(3px); }
  75%  { transform: translateX(calc(75vw))  translateY(-2px); }
  90%  { transform: translateX(calc(90vw))  translateY(2px); }
  100% { transform: translateX(calc(100vw + 160px)) translateY(0px); }
}

.fl-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Sayfa hero'su (feribot-seferleri, kategorileri): sol taraf */
.fl-hero__inner > div {
  flex: 1;
}

.fl-hero__title {
  text-align: left;
  color: var(--fl-white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.fl-hero__sub,
.fl-hero__subtitle {
  text-align: left;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Anasayfa search hero: tek sütun, ortalı */
#fl-hero-search .fl-hero__inner {
  display: block;
  text-align: center;
}
#fl-hero-search .fl-hero__title,
#fl-hero-search .fl-hero__subtitle {
  text-align: center;
  margin-bottom: 8px;
}
#fl-hero-search .fl-hero__subtitle {
  margin-bottom: 32px;
}

/* Search box card */
.fl-search-box {
  background: var(--fl-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  overflow: visible;  /* popup ve dropdown kesilmesin */
  position: relative;
  z-index: 10;
}

/* Journey type tabs */
.fl-search-tabs {
  display: flex;
  border-bottom: 1px solid var(--fl-gray-border);
  padding: 0 8px;
  background: #fafbfd;
  border-radius: 16px 16px 0 0;  /* search-box'ta overflow:hidden kalmadığı için köşeleri buraya taşıdık */
}
.fl-search-tab {
  padding: 12px 20px;
  border: none;
  background: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--fl-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--fl-transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.fl-search-tab.active,
.fl-search-tab:hover {
  color: var(--fl-navy);
  border-bottom-color: var(--fl-orange);
}

/* Journey type toggle (gidiş / gidiş-dönüş) */
.fl-journey-toggles {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px 0;
}
.fl-journey-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  color: var(--fl-muted);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--fl-gray-border);
  transition: all var(--fl-transition);
}
.fl-journey-toggle input { display: none; }
.fl-journey-toggle.selected {
  background: var(--fl-navy);
  border-color: var(--fl-navy);
  color: var(--fl-white);
}

/* Search fields row — varsayılan 4 kolon (dönüş tarihi gizliyken) */
.fl-search-fields {
  display: grid;
  grid-template-columns: 1fr 160px 150px 130px;
  align-items: stretch;
  padding: 14px 16px 16px;
  gap: 8px;
}
/* Gidiş-dönüş seçilince 5. kolon (dönüş tarihi) açılır */
.fl-search-fields.has-donus {
  grid-template-columns: 1fr 140px 130px 150px 130px;
}

.fl-search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 0;
}
.fl-search-field--border {
  border: 1.5px solid var(--fl-gray-border);
  border-radius: var(--fl-radius);
  padding: 8px 12px;
  transition: border-color var(--fl-transition);
  cursor: pointer;
}
.fl-search-field--border:focus-within {
  border-color: var(--fl-navy);
}
.fl-search-field__label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fl-muted);
  margin-bottom: 3px;
}
.fl-search-field__input {
  border: none;
  outline: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--fl-text);
  background: transparent;
  width: 100%;
  padding: 0;
}
.fl-search-field__input::placeholder { color: #bcc4d0; font-weight: 400; }
.fl-search-field__icon {
  color: var(--fl-orange);
  font-size: .85rem;
  margin-bottom: 2px;
}
.fl-search-field__value {
  font-size: .92rem;
  font-weight: 500;
  color: var(--fl-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.fl-search-field__value.placeholder { color: #bcc4d0; font-weight: 400; }

/* Küçük round butonlar (carousel ok, vb.) */
.fl-round-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--fl-gray-border);
  background: var(--fl-white);
  color: var(--fl-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--fl-transition);
}
.fl-round-btn:hover {
  background: var(--fl-navy);
  border-color: var(--fl-navy);
  color: var(--fl-white);
}

/* SEFER ARA button */
.fl-search-submit {
  background: var(--fl-orange);
  color: var(--fl-white);
  border: none;
  border-radius: var(--fl-radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--fl-transition), transform .1s;
  padding: 0 16px;
  min-height: 60px;
  letter-spacing: .01em;
  width: 100%;
}
.fl-search-submit:hover {
  background: var(--fl-orange-h);
  transform: translateY(-1px);
}
.fl-search-submit:active { transform: translateY(0); }

/* Passenger popup */
.fl-passenger-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: 290px;
  background: var(--fl-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26,39,68,.18);
  border: 1px solid var(--fl-gray-border);
  padding: 16px;
  z-index: 9999;
  display: none;
  /* flex/grid miras sıfırla */
  flex-direction: unset;
  align-items: unset;
  justify-content: unset;
  text-align: left;
  direction: ltr;
}

/* Mobilde: ekrana sabitlenmiş, ortalanmış popup */
@media (max-width: 767px) {
  .fl-passenger-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    width: calc(100vw - 32px);
    max-width: 340px;
    max-height: 80vh;
    overflow-y: auto;
  }
}
.fl-passenger-popup.open { display: block; }
.fl-passenger-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--fl-gray-border);
}
.fl-passenger-row:last-child { border-bottom: none; }
.fl-passenger-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--fl-text);
  text-align: left !important;
}
.fl-passenger-sublabel {
  font-size: .73rem;
  color: var(--fl-muted);
  text-align: left !important;
}
.fl-passenger-popup {
  text-align: left !important;
  direction: ltr !important;
}
.fl-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-counter__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--fl-gray-border);
  background: var(--fl-white);
  color: var(--fl-navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fl-transition);
  line-height: 1;
}
.fl-counter__btn:hover { background: var(--fl-navy); border-color: var(--fl-navy); color: var(--fl-white); }
.fl-counter__btn:disabled { opacity: .35; cursor: not-allowed; }
.fl-counter__val { font-size: .95rem; font-weight: 700; min-width: 20px; text-align: center; }
.fl-popup-close {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background: var(--fl-navy);
  color: var(--fl-white);
  border: none;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}

/* Autocomplete dropdown */
.fl-ac-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--fl-white);
  border: 1px solid var(--fl-gray-border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(26,39,68,.18);
  z-index: 9999;   /* her şeyin üstünde */
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.fl-ac-dropdown.open { display: block; }
.fl-ac-item {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--fl-transition);
}
.fl-ac-item:hover { background: var(--fl-gray-bg); }
.fl-ac-item i { color: var(--fl-orange); font-size: .9rem; flex-shrink: 0; }
.fl-ac-name { font-size: .88rem; font-weight: 600; color: var(--fl-text); }
.fl-ac-route { font-size: .75rem; color: var(--fl-muted); margin-top: 1px; }
.fl-ac-item--keyword { background:#f8f9fa; border-bottom:1px solid #e9ecef; }
.fl-ac-item--keyword .fl-ac-name { color:#555; font-weight:500; font-style:italic; }
.fl-ac-item--keyword i { color:#888 !important; }
.fl-ac-item--keyword:hover { background:#eef2ff; }

/* Trust badges below hero */
.fl-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.fl-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.80);
  font-size: .82rem;
  font-weight: 500;
}
.fl-badge i {
  color: var(--fl-orange);
  font-size: 1rem;
}

/* ──────────── PAGE SECTIONS ──────────── */

/* Section title */
.fl-section-title {
  text-align: center;
  margin-bottom: 36px;
}
.fl-section-title h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--fl-navy);
  margin-bottom: 8px;
}
.fl-section-title p {
  font-size: 1rem;
  color: var(--fl-muted);
  margin: 0;
}

/* Zebra sections */
.fl-section { padding: 56px 0; }
.fl-section--gray { background: var(--fl-gray-bg); }

/* ──────────── ROUTE CARDS (popular routes) ──────────── */
.fl-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fl-route-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--fl-white);
  box-shadow: var(--fl-shadow-sm);
  border: 1px solid var(--fl-gray-border);
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.fl-route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow);
  color: inherit;
}
.fl-route-card__img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fl-navy) 0%, var(--fl-navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-route-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fl-route-card__img-placeholder {
  font-size: 3rem;
  color: rgba(255,255,255,.4);
}
.fl-route-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--fl-orange);
  color: var(--fl-white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.fl-route-card__body {
  padding: 14px 16px;
}
.fl-route-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fl-navy);
  margin-bottom: 4px;
}
.fl-route-card__route {
  font-size: .8rem;
  color: var(--fl-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fl-route-card__route i { color: var(--fl-orange); }
.fl-route-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--fl-orange);
}

/* ──────────── FEATURE CARDS ──────────── */
.fl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fl-feature-card {
  background: var(--fl-white);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--fl-gray-border);
  box-shadow: var(--fl-shadow-sm);
  transition: transform var(--fl-transition);
}
.fl-feature-card:hover { transform: translateY(-3px); }
.fl-feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fl-orange-lt);
  color: var(--fl-orange);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.fl-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fl-navy);
  margin-bottom: 8px;
}
.fl-feature-card__desc {
  font-size: .85rem;
  color: var(--fl-muted);
  line-height: 1.6;
  margin: 0;
}

/* ──────────── ISLAND CAROUSEL ──────────── */
.fl-island-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Tam 5 kart sığsın, yatay scroll olmasın */
  flex-wrap: nowrap;
}
.fl-island-carousel::-webkit-scrollbar { display: none; }
.fl-island-item {
  flex: 0 0 220px;
  height: 220px;            /* kare */
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fl-navy);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
}
.fl-island-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(26,39,68,.22);
}
.fl-island-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.15) brightness(1.05);
  transition: transform .35s ease, filter .3s ease;
}
.fl-island-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.25) brightness(1.08);
}

/* Overlay */
.fl-island-item__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.60) 0%, transparent 100%);
}
.fl-island-item__name {
  color: var(--fl-white);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.2;
}
.fl-island-item__sub {
  color: rgba(255,255,255,.75);
  font-size: .68rem;
  margin-top: 2px;
}

/* API resimlerinde overlay tamamen saydam — resmi soldurmaz */
.fl-island-item.has-api-img .fl-island-item__overlay {
  background: transparent;
  opacity: 0;
  transition: opacity .22s, background .22s;
}
/* Hover'da sadece alt kenar çok hafif koyulaşır, metin okunur */
.fl-island-item.has-api-img:hover .fl-island-item__overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 70%);
}

/* ──────────── APP PROMO BAND ──────────── */
.fl-app-band {
  background: linear-gradient(135deg, var(--fl-navy-dark) 0%, var(--fl-navy-mid) 100%);
  padding: 40px 0;
}
.fl-app-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.fl-app-band__text h3 {
  color: var(--fl-white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.fl-app-band__text p {
  color: rgba(255,255,255,.70);
  font-size: .92rem;
  margin: 0;
}
.fl-app-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.fl-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--fl-white);
  text-decoration: none;
  transition: all var(--fl-transition);
  font-size: .88rem;
  font-weight: 600;
}
.fl-app-btn:hover { background: rgba(255,255,255,.18); color: var(--fl-white); }
.fl-app-btn i { font-size: 1.4rem; }

/* ──────────── BLOG CARDS ──────────── */
.fl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fl-blog-card {
  background: var(--fl-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--fl-gray-border);
  box-shadow: var(--fl-shadow-sm);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
  color: inherit;
}
.fl-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fl-shadow);
  color: inherit;
}
.fl-blog-card__img {
  height: 175px;
  overflow: hidden;
  background: var(--fl-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.fl-blog-card__img i { font-size: 2.5rem; color: #d1d9e6; }
.fl-blog-card__body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.fl-blog-card__cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fl-orange);
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.fl-blog-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--fl-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.fl-blog-card__excerpt {
  font-size: .82rem;
  color: var(--fl-muted);
  line-height: 1.6;
  flex: 1;
}
.fl-blog-card__foot {
  padding: 10px 18px 14px;
  font-size: .78rem;
  color: var(--fl-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ──────────── CTA BAND ──────────── */
.fl-cta-band {
  background: var(--fl-orange);
  padding: 36px 0;
  text-align: center;
}
.fl-cta-band h3 {
  color: var(--fl-white);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.fl-cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 20px;
}
.fl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--fl-white);
  color: var(--fl-orange);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--fl-transition);
}
.fl-cta-btn:hover {
  background: var(--fl-navy);
  color: var(--fl-white);
}

/* ──────────── FOOTER ──────────── */
.fl-footer {
  background: var(--fl-navy-dark);
}

/* Newsletter strip */
.fl-newsletter {
  background: var(--fl-navy-mid);
  padding: 28px 0;
}
.fl-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.fl-newsletter__text h4 {
  color: var(--fl-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.fl-newsletter__text p {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  margin: 0;
}
.fl-newsletter__form {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.fl-newsletter__input {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--fl-white);
  font-size: .88rem;
  width: 240px;
  outline: none;
  transition: border-color var(--fl-transition);
}
.fl-newsletter__input::placeholder { color: rgba(255,255,255,.45); }
.fl-newsletter__input:focus { border-color: var(--fl-orange); }
.fl-newsletter__btn {
  padding: 10px 20px;
  background: var(--fl-orange);
  color: var(--fl-white);
  border: none;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--fl-transition);
}
.fl-newsletter__btn:hover { background: var(--fl-orange-h); }

/* Phone strip */
.fl-footer-phone-strip {
  background: var(--fl-navy);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fl-footer-phone-strip a {
  color: var(--fl-white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-footer-phone-strip a i { color: var(--fl-orange); }

/* Main footer links */
.fl-footer-main {
  padding: 44px 0 28px;
}
.fl-footer-col-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.fl-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fl-footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--fl-transition);
}
.fl-footer-links a:hover { color: var(--fl-orange); }

/* Footer logo/brand */
.fl-footer-brand {}
.fl-footer-brand__logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.fl-footer-brand__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 18px;
}
.fl-footer-social { display: flex; gap: 10px; }
.fl-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: all var(--fl-transition);
}
.fl-social-btn:hover { background: var(--fl-orange); color: var(--fl-white); }

/* Footer bottom */
.fl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.fl-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fl-footer-bottom__copy {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}
.fl-footer-bottom__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.fl-footer-bottom__links a {
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  text-decoration: none;
  transition: color var(--fl-transition);
}
.fl-footer-bottom__links a:hover { color: var(--fl-orange); }

/* Payment logos */
.fl-payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fl-payment-logos img {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity var(--fl-transition);
}
.fl-payment-logos img:hover { opacity: .85; }

/* ──────────── MOBILE ──────────── */
.fl-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  display: none;
}
.fl-mobile-nav-overlay.open { display: block; }
.fl-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 90vw;
  height: 100%;
  background: var(--fl-white);
  z-index: 1101;
  transition: right .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.fl-mobile-nav.open { right: 0; }
.fl-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--fl-gray-border);
}
.fl-mobile-nav__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--fl-navy);
  padding: 4px;
}
.fl-mobile-nav__links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}
.fl-mobile-nav__links li a {
  display: block;
  padding: 13px 22px;
  color: var(--fl-text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--fl-gray-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-mobile-nav__links li a i { color: var(--fl-orange); width: 18px; text-align: center; }
.fl-mobile-nav__links li a.active {
  color: var(--fl-orange);
  font-weight: 700;
  background: rgba(255, 120, 0, .06);
}
.fl-mobile-nav__actions {
  padding: 16px 20px;
  border-top: 1px solid var(--fl-gray-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile search adapt */
@media (max-width: 1199px) {
  .fl-search-fields {
    grid-template-columns: 1fr 140px 130px 120px;
  }
  .fl-search-fields.has-donus {
    grid-template-columns: 1fr 120px 110px 130px 120px;
  }
}
@media (max-width: 991px) {
  .fl-mobile-toggle { display: flex; }
  .fl-nav { display: none; }
  .fl-header__phone span { display: inline; }  /* tablet/mobilde numara göster */
  .fl-header__btn--solid { display: none; }    /* acente giriş butonu gizle */

  .fl-hero { padding: 32px 0 56px; }
  .fl-hero__title { font-size: 1.5rem; }
  .fl-island-item { flex: 0 0 160px; height: 160px; }

  .fl-search-fields,
  .fl-search-fields.has-donus {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .fl-sf-dest { grid-column: 1 / -1; }
  .fl-search-submit { min-height: 50px; font-size: .95rem; grid-column: 1 / -1; }

  .fl-route-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-app-band__inner { flex-direction: column; text-align: center; }

  .fl-footer-phone-strip { flex-direction: column; gap: 8px; text-align: center; }
  .fl-newsletter__inner { flex-direction: column; }
  .fl-newsletter__form { flex-direction: column; width: 100%; }
  .fl-newsletter__input { width: 100%; }
  .fl-footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .fl-hero__title { font-size: 1.25rem; }
  .fl-island-item { flex: 0 0 140px; height: 140px; }
  .fl-badges { gap: 12px; }
  .fl-route-grid { grid-template-columns: 1fr; }
  .fl-features-grid { grid-template-columns: 1fr; }
  .fl-blog-grid { grid-template-columns: 1fr; }
  .fl-header__actions .fl-header__btn--outline { display: none; }
  .fl-header__actions .fl-lang-btn { display: none; }
  /* küçük ekranda numara göster ama font küçülsün */
  .fl-header__phone span { display: inline; font-size: .78rem; }
  .fl-header__phone { padding: 5px 8px; gap: 5px; }
}

/* ──────────── UTILITY ──────────── */
.fl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--fl-transition);
  cursor: pointer;
  border: none;
}
.fl-btn--orange { background: var(--fl-orange); color: var(--fl-white); }
.fl-btn--orange:hover { background: var(--fl-orange-h); color: var(--fl-white); }
.fl-btn--navy { background: var(--fl-navy); color: var(--fl-white); }
.fl-btn--navy:hover { background: var(--fl-navy-mid); color: var(--fl-white); }
.fl-btn--outline-navy {
  background: transparent;
  border: 2px solid var(--fl-navy);
  color: var(--fl-navy);
}
.fl-btn--outline-navy:hover { background: var(--fl-navy); color: var(--fl-white); }
.fl-btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--fl-white);
}
.fl-btn--outline-white:hover { background: rgba(255,255,255,.12); color: var(--fl-white); }
.fl-text-center { text-align: center; }
.fl-mt-6 { margin-top: 32px; }
.fl-mt-8 { margin-top: 42px; }

/* ══════════════════════════════════════════════════════
   ANA BANNER SLİDER
   ══════════════════════════════════════════════════════ */
.fl-banner-section {
  background: var(--fl-gray-bg);
  padding: 28px 0 0;
}

.fl-banner-slider-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(26,39,68,.15);
  position: relative;
}

.fl-main-slider .fl-slide {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  display: block;
}

.fl-main-slider .fl-slide__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.fl-main-slider .fl-slide__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.fl-main-slider .fl-slide:hover .fl-slide__img {
  transform: scale(1.025);
}

/* Alt gradient overlay */
.fl-main-slider .fl-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,27,53,0) 40%,
    rgba(15,27,53,.55) 100%
  );
  pointer-events: none;
}

/* Caption */
.fl-main-slider .fl-slide__caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  pointer-events: none;
}

/* Özel nav butonları — fl-banner-outer içinde konumlandırılmış */
.fl-banner-outer {
  position: relative;
}

.fl-snav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  color: var(--fl-navy);
  font-size: 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.2);
  transition: background var(--fl-transition), color var(--fl-transition), transform var(--fl-transition);
  outline: none;
}
.fl-snav:hover {
  background: var(--fl-orange);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.fl-snav--prev { left: 12px; }
.fl-snav--next { right: 12px; }

/* Owl'ın kendi nav butonlarını tamamen gizle (özel buton kullanıyoruz) */
.fl-main-slider .owl-nav,
.fl-main-slider .owl-nav button,
.fl-main-slider .owl-prev,
.fl-main-slider .owl-next {
  display: none !important;
}

/* Owl Dots */
.fl-main-slider .owl-dots {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
}
.fl-main-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  margin: 0 4px;
  transition: all var(--fl-transition);
}
.fl-main-slider .owl-dots .owl-dot.active span,
.fl-main-slider .owl-dots .owl-dot:hover span {
  background: var(--fl-orange);
  width: 24px;
  border-radius: 4px;
}

/* Mobil */
@media (max-width: 768px) {
  .fl-main-slider .fl-slide__img { height: 200px; }
  .fl-banner-section { padding: 16px 0 0; }
  .fl-snav { width: 34px; height: 34px; font-size: .8rem; }
  .fl-snav--prev { left: 8px; }
  .fl-snav--next { right: 8px; }
}
@media (max-width: 480px) {
  .fl-main-slider .fl-slide__img { height: 160px; }
  .fl-main-slider .fl-slide__caption { font-size: .85rem; bottom: 12px; left: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   KATEGORİ DETAY SAYFASI  (feribot-kategorileri/{slug})
   ═══════════════════════════════════════════════════════════════ */

/* Yardımcı font-size sınıfları */
.fs-12 { font-size: .75rem !important; }
.fs-14 { font-size: .875rem !important; }
.fs-18 { font-size: 1.125rem !important; }

/* ── Hero ── */
.fcat-hero {
  background: linear-gradient(135deg, rgb(18 55 81 / 88%) 0%, rgb(30 127 196 / 78%) 100%),
              url('/assets/img/ferryboat.jpg') center center / cover no-repeat;
  padding: 40px 0 36px;
  position: relative;
}
.fcat-hero__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fcat-group__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
}
.fcat-group__icon-wrap--lg {
  width: 64px; height: 64px;
  font-size: 1.8rem;
  border-radius: 16px;
}
.fcat-hero__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -.4px;
}
.fcat-hero__sub {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin: 0;
}
.fcat-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.fcat-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.fcat-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.fcat-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }

/* ── Kardeş Kategori Tabları ── */
.fcat-sibling-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fcat-sibling-tab {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 8px;
  border: 2px solid #dee2e6;
  background: #fff;
  color: #555;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.fcat-sibling-tab:hover {
  border-color: var(--fl-navy);
  color: var(--fl-navy);
  background: #eef3f8;
}
.fcat-sibling-tab.active {
  border-color: var(--fl-navy);
  background: var(--fl-navy);
  color: #fff;
}

/* ── Feribot Kartları ── */
.ferry-home-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.ferry-home-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  transform: translateY(-3px);
}
.ferry-home-card__img-wrap {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e9eef5;
  text-decoration: none;
}
.ferry-home-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s;
}
.ferry-home-card:hover .ferry-home-card__img-wrap img { transform: scale(1.05); }
.ferry-home-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-navy);
  font-size: 3rem;
  opacity: .35;
}
.ferry-home-card__route-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(15,27,53,.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
}
.ferry-home-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ferry-home-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fl-navy);
  margin-bottom: 10px;
}
.ferry-home-card__times {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ferry-home-card__time-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: #555;
}
.ferry-home-card__time-item i {
  color: var(--fl-orange);
  font-size: .75rem;
}
.ferry-home-card__btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--fl-navy);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s;
}
.ferry-home-card__btn:hover { background: var(--fl-orange); color: #fff; }

/* ── Sefer Mini Listesi ── */
.fcat-sched-list {
  background: #f8f9fc;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fcat-sched-row {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: #555;
}

/* ── Hızlı Arama Formu ── */
.fcat-quick-form .form-control-sm { font-size: .82rem; border-radius: 8px; }
.fcat-date-input { cursor: pointer; }

/* Sarı / Turuncu Buton */
.btn-yellow {
  background: var(--fl-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background .2s;
}
.btn-yellow:hover { background: #e06c00; color: #fff; }

/* ── Alt CTA Bandı ── */
.fcat-search-cta {
  background: linear-gradient(135deg, var(--fl-navy) 0%, var(--fl-navy-mid) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: #fff;
}
.fcat-search-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fcat-search-cta .text-muted { color: rgba(255,255,255,.7) !important; }
.fcat-search-cta .btn-yellow { padding: 11px 28px; font-size: .95rem; white-space: nowrap; }

@media (max-width: 767px) {
  .fcat-hero__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fcat-hero__title { font-size: 1.5rem; }
  .fcat-search-cta { padding: 20px 18px; }
  .fcat-search-cta__inner { flex-direction: column; align-items: flex-start; }
  .ferry-home-card__img-wrap { height: 160px; }
}
