/* =====================================================
   home-index.css — Ana Sayfa özel stilleri
   ===================================================== */

/* E-SIM & Seyahat Sigortası Butonu */
.esim-insurance-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 10px;
    padding: 10px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.esim-insurance-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}
.esim-insurance-btn i    { font-size: 1.3rem; }
.esim-insurance-btn span { font-weight: 700; font-size: 0.85rem; line-height: 1.2; }
.esim-insurance-btn small { font-size: 0.7rem; opacity: 0.9; line-height: 1.1; }
@media (max-width: 480px) {
    .esim-insurance-btn { width: 100%; justify-content: center; padding: 12px 15px; }
}

/* Online Check-in Butonu */
.checkin-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}
.checkin-hero-btn:hover {
    background: #ffd632;
    color: #1a3a6e;
    border-color: #ffd632;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,214,50,0.35);
}
@media (max-width: 576px) {
    .checkin-hero-btn { font-size: 0.9rem; padding: 10px 18px; }
}

/* En Yakın Sefer Satırı (route kart içi) */
.next-dep-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #eee;
    color: #555;
}
.next-dep-row i          { color: #0d6efd; font-size: 11px; flex-shrink: 0; }
.next-dep-row .dep-label { white-space: nowrap; }
.next-dep-row .dep-badge {
    background: #e8f4fd;
    color: #0d6efd;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.next-dep-row .no-dep    { color: #999; font-style: italic; }
.route-card              { position: relative; }

/* =====================================================
   Bugünkü Seferler Bandı
   ===================================================== */
.today-departures-band {
    background: #0d2d5e;
    border-top: 3px solid #f07e26;
    overflow: hidden;
}

/* Başlık satırı — 3 dil */
.today-band-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f07e26;
    color: #fff;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
}
.today-band-header i    { font-size: 0.95rem; }
.band-lang-sep          { opacity: 0.5; font-weight: 300; }
.band-lang-en           { font-weight: 600; opacity: 0.92; }
.band-lang-el           { font-size: 0.78rem; opacity: 0.88; font-style: italic; }

/* Kayan ticker */
.today-band-scroll { overflow: hidden; position: relative; }
.today-band-track {
    display: flex;
    width: max-content;
    animation: bandScroll 30s linear infinite;
}
.today-band-track:hover { animation-play-state: paused; }

@keyframes bandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.today-band-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
    white-space: nowrap;
}
.today-band-item:hover   { background: rgba(240,126,38,0.22); color: #f7b26a; }
.band-time {
    font-size: 0.92rem;
    font-weight: 800;
    color: #f07e26;
    letter-spacing: 0.3px;
    min-width: 50px;
}
.band-route-tr           { font-size: 0.83rem; font-weight: 600; }
.band-route-el           { font-size: 0.74rem; opacity: 0.65; font-style: italic; }
.band-dot                { color: rgba(255,255,255,0.25); font-size: 0.5rem; }

/* Mobil < 400px */
@media (max-width: 400px) {
    .today-band-header   { font-size: 0.72rem; gap: 6px; padding: 5px 10px; }
    .band-lang-en,
    .band-lang-el,
    .band-lang-sep:last-of-type { display: none; }
    .today-band-item     { padding: 7px 12px; gap: 6px; }
    .band-time           { font-size: 0.85rem; min-width: 42px; }
    .band-route-tr       { font-size: 0.76rem; }
    .band-route-el       { display: none; }
}

/* 5 kart yan yana — geniş ekranda %20 genişlik */
@media (min-width: 992px) {
    .routes-section .routes-5col > .col-lg-3 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
