/* =======================================================
   HOME.CSS - PREMIUM / LUXURY REDESIGN
   Glassmorphism search bar, cinematic hero, premium animations
   ======================================================= */

/* Header ile sayfa arasindaki boslugu sifirla */
main {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: -1px !important;
    padding-top: 0 !important;
}

main>section:first-child,
main>.home-hero {
    margin-top: -1px !important;
    padding-top: 0 !important;
}

/* ============================================
   HERO SECTION - CINEMATIC FULLSCREEN (artık kullanılmıyor)
   ============================================ */
.home-hero {
    position: relative;
    min-height: 100vh;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(160deg,
            #001a2c 0%,
            #003050 30%,
            var(--primary) 60%,
            #0891b2 100%);
    overflow: visible !important; /* DROPDOWNLARIN GÖRÜNMESİ İÇİN DÜZELTİLDİ */
    z-index: 10;
}

/* Atmospheric overlay */
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(8, 145, 178, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(0, 105, 148, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom gradient fade for smooth transition to search card */
.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 40, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   AMBIENT FLOATING PARTICLES
   ============================================ */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden !important;
}

.hero-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: heroParticleFloat linear infinite;
}

.hero-particles span:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 20%; animation-duration: 22s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 50px; height: 50px; left: 70%; top: 60%; animation-duration: 18s; animation-delay: -4s; }
.hero-particles span:nth-child(3) { width: 120px; height: 120px; left: 50%; top: 10%; animation-duration: 26s; animation-delay: -8s; }
.hero-particles span:nth-child(4) { width: 40px; height: 40px; left: 85%; top: 30%; animation-duration: 20s; animation-delay: -2s; }
.hero-particles span:nth-child(5) { width: 65px; height: 65px; left: 25%; top: 75%; animation-duration: 24s; animation-delay: -6s; }
.hero-particles span:nth-child(6) { width: 35px; height: 35px; left: 60%; top: 85%; animation-duration: 16s; animation-delay: -10s; }

@keyframes heroParticleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-60px) translateX(30px) scale(1.15); opacity: 0.7; }
    90% { opacity: 1; }
    100% { transform: translateY(-120px) translateX(-20px) scale(1); opacity: 0; }
}

/* ============================================
   HERO CONTAINER - CENTERED CONTENT
   ============================================ */
.home-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 30px 60px;
    position: relative;
    z-index: 10;
    flex: 1;
}

/* ============================================
   HERO CONTENT (CENTERED TEXT)
   ============================================ */
.home-content-wrapper { color: var(--white); }

.hero-anim {
    opacity: 0;
    transform: translateY(35px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim:nth-child(1) { animation-delay: 0.1s; }
.hero-anim:nth-child(2) { animation-delay: 0.25s; }
.hero-anim:nth-child(3) { animation-delay: 0.4s; }
.hero-anim:nth-child(4) { animation-delay: 0.55s; }
.hero-anim:nth-child(5) { animation-delay: 0.7s; }
.home-search-bar-wrapper.hero-anim { animation-delay: 0.85s; }

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Badge / Subtitle */
.home-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); padding: 10px 24px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15); letter-spacing: 0.5px;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
}

.home-badge i { font-size: 0.8rem; opacity: 0.7; }

/* H1 TITLE */
.home-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.12; margin-bottom: 10px; color: #fff; position: relative;
}

.hero-title-static {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #a8edea 50%, #ffffff 60%, #ffffff 100%);
    background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: heroTitleShimmer 4s ease-in-out infinite; filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.2));
}

@keyframes heroTitleShimmer {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Animated route line */
.hero-title-animated-line {
    display: flex; align-items: center; justify-content: center; height: 3.2rem; min-height: 3.2rem; margin-top: 4px; margin-bottom: 24px; box-sizing: border-box;
}

.hero-title-route {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    color: #fff !important; padding: 6px 20px; border-radius: 8px; display: inline-block; border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); font-weight: 700; letter-spacing: 0.02em; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    font-size: clamp(1.2rem, 3vw, 1.8rem); line-height: 1.4; vertical-align: middle; min-height: 1.4em;
}

.hero-title-cursor {
    display: inline-block; width: 2px; min-width: 2px; height: 1.2em; background: rgba(255, 255, 255, 0.8); margin-left: 4px; vertical-align: middle; animation: heroCursorBlink 0.9s ease-in-out infinite;
}

@keyframes heroCursorBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.15; } }

/* Description */
.home-description {
    font-size: 1.15rem; opacity: 0.85; line-height: 1.8; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15); font-weight: 400; color: rgba(255, 255, 255, 0.92);
}

/* Features */
.home-features { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.home-feature {
    display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12); transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); color: rgba(255, 255, 255, 0.95); text-decoration: none;
}
.home-feature:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.25); }
.home-feature i { color: #4ade80; font-size: 1rem; }

.home-feature--cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00507a 100%); border-color: rgba(255, 255, 255, 0.2);
    font-weight: 700; box-shadow: 0 4px 20px rgba(0, 105, 148, 0.4); animation: ctaPulse 3s ease-in-out infinite;
}
.home-feature--cta i { color: #fff; }
.home-feature--cta:hover { animation-play-state: paused; transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 30px rgba(0, 105, 148, 0.5); }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(0, 105, 148, 0.4); } 50% { box-shadow: 0 4px 30px rgba(0, 105, 148, 0.6), 0 0 0 6px rgba(0, 105, 148, 0.1); } }

/* ============================================
   SEARCH BAR - PREMIUM DARK GLASSMORPHISM
   ============================================ */
.home-search-bar-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.home-search-card {
    background: rgba(15, 23, 42, 0.5) !important;
    backdrop-filter: blur(24px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    padding: 24px 32px;
    position: relative;
    z-index: 9999;
}

.home-search-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Top Bar: Trip Type */
.search-top-bar { margin-bottom: 20px; display: flex; justify-content: flex-start; }
.home-trip-type { display: inline-flex; background: rgba(0, 0, 0, 0.3); padding: 5px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.1); }
.home-radio { margin: 0; }
.home-radio input { display: none; }
.home-radio-box {
    display: flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 10px; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); transition: all 0.3s ease;
}
.home-radio-box i { font-size: 0.9rem; }
.home-radio input:checked + .home-radio-box { background: rgba(255, 255, 255, 0.15); color: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.2); border: 1px solid rgba(255, 255, 255, 0.2); }

/* Main Inputs Row */
.search-main-inputs {
    display: flex; align-items: center; background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 8px;
}

.search-field { padding: 10px 24px; flex: 1; position: relative; }
.search-field--route { flex: 1.6; }
.search-field--dates { flex: 1.8; }
.search-field--passengers { flex: 1.2; }
.search-field--submit { flex: 0 0 auto; padding: 0; }
.search-divider { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.15); flex-shrink: 0; }

/* Labels */
.search-field label, .home-form-group label {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.75rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em;
}
.search-field label i, .home-form-group label i { color: #4ade80; font-size: 0.85rem; }

/* Inputs */
.home-search-card input[type="text"], .home-search-card input[type="date"], .home-route-input, .home-passenger-trigger {
    width: 100%; height: 36px; padding: 0; border: none !important; background: transparent !important;
    color: #ffffff !important; font-size: 1.1rem; font-weight: 600; box-shadow: none !important; outline: none !important; cursor: pointer;
}
.home-search-card input::placeholder { color: rgba(255, 255, 255, 0.4) !important; font-weight: 500; }

/* Date Specific */
.home-date-row { display: flex; gap: 20px; }
.home-date-row .home-form-group { flex: 1; }
.home-search-card input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.8; transition: 0.2s; filter: invert(1) brightness(0.9) !important; }
.home-search-card input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* Dropdowns (Güzergah ve Yolcu) */
.home-route-wrapper, .home-passenger-group { position: relative; }
.home-dropdown-icon, .home-passenger-trigger i { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; pointer-events: none; }
.home-passenger-trigger { display: flex; align-items: center; justify-content: space-between; padding-right: 20px; }

/* Dropdown Stilleri */
.home-route-dropdown, .home-passenger-dropdown {
    position: absolute; top: calc(100% + 20px); left: -20px; width: calc(100% + 40px);
    background: rgba(255, 255, 255, 0.98); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-radius: 16px; z-index: 999999 !important;
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.home-route-dropdown.active, .home-passenger-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.home-route-dropdown.active { max-height: 320px; overflow-y: auto; padding: 8px; }
.passenger-content { padding: 20px; }
.home-passenger-dropdown { width: 340px; } 

.home-route-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: #334155; transition: 0.2s; }
.home-route-option:hover { background: #f1f5f9; color: var(--primary); }
.home-route-option.selected { background: #eff6ff; color: var(--primary); }
.home-route-option i { color: #94a3b8; font-size: 1.1rem; }
.home-route-option.selected i, .home-route-option:hover i { color: var(--primary); }

.home-passenger-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.home-passenger-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.home-passenger-item strong { display: block; color: #0f172a; font-size: 1rem; }
.home-passenger-item small { color: #64748b; font-size: 0.85rem; }

.home-counter { display: flex; align-items: center; gap: 14px; }
.home-counter button { width: 36px; height: 36px; border-radius: 10px; border: 1px solid #cbd5e1; background: #fff; color: #475569; font-size: 1.2rem; cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.home-counter button:hover { border-color: var(--primary); color: var(--primary); background: #f8fafc; }
.home-counter span { font-weight: 700; width: 24px; text-align: center; color: #0f172a; font-size: 1.1rem; }

.home-passenger-done { width: 100%; margin-top: 20px; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.2s; }

/* Submit Button */
.home-btn-search {
    height: 100%; min-height: 64px; padding: 0 36px; background: #e74c3c !important; color: #fff !important; border: none; border-radius: 14px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4) !important;
}
.home-btn-search:hover { transform: translateY(-2px); background: #c0392b !important; box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6) !important; }

/* ============================================
   CONTENT ANIMATION (TAB SWITCHING)
   ============================================ */
.content-fade-out { opacity: 0; transform: translateY(15px); transition: all 0.3s ease-in; }
.content-fade-in { opacity: 1; transform: translateY(0); transition: all 0.4s ease-out; }
.search-tab-content { display: none; }
.search-tab-content.active { display: block; }

/* ============================================
   VIDEO BACKGROUND (HOME HERO)
   ============================================ */
.hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.hero-bg-video { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.video-overlay-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(0, 26, 44, 0.75) 0%, rgba(0, 48, 80, 0.65) 50%, rgba(0, 20, 50, 0.8) 100%); z-index: 1; }
.home-hero.has-video { background: transparent !important; }
.home-hero.has-video::before { z-index: 2; }
.home-hero.has-video::after { z-index: 2; }
.home-hero.has-video .home-hero-container { z-index: 10; }
.home-hero.has-video .home-search-bar-wrapper { z-index: 10; }
@media (max-width: 992px) {
    .home-hero.has-video .hero-video-wrapper { display: none !important; }
    .home-hero.has-video { background-image: url(/assets/img/default.png) !important; background-size: cover !important; background-position: center !important; }
}

/* ============================================
   SEO INFO
   ============================================ */
.seo-info-section { background: #fdfdfd; padding: 40px 0; border-top: 1px solid #eee; }

/* ============================================
   BLOG SLIDER
   ============================================ */
.blog-slider-container { width: 100%; overflow: hidden; position: relative; padding: 10px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.blog-slider-track { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; padding: 10px 5px 20px; }
.blog-slider-track::-webkit-scrollbar { display: none; }
.blog-slider-track:active { cursor: grabbing; }

/* ============================================
   BLOG CARD
   ============================================ */
.blog-slide-card { min-width: 340px; width: 340px; flex: 0 0 auto; user-select: none; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; transition: all 0.3s ease; }
.blog-slide-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 8px 24px rgba(229, 80, 57, 0.15); }
.blog-slide-card .card-image { height: 200px; position: relative; overflow: hidden; background: #f3f4f6; flex-shrink: 0; }
.blog-slide-card .card-image img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 0.4s ease; }
.blog-slide-card:hover .card-image img { transform: scale(1.05); }
.blog-slide-card .card-image .price-tag { position: absolute; top: 12px; right: 12px; background: none !important; border: none !important; box-shadow: none !important; backdrop-filter: none !important; padding: 0; margin: 0; display: flex; align-items: center; gap: 5px; color: white; font-size: 0.9rem; font-weight: 700; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7); z-index: 2; }
.blog-slide-card .card-image .price-tag i { color: white; font-size: 1rem; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)); }
.blog-slide-card .card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.blog-slide-card .card-body>div:first-child { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; padding-bottom: 12px; border-bottom: 2px solid #f3f4f6; flex-shrink: 0; }
.blog-slide-card .card-body>div:first-child span { display: flex; align-items: center; gap: 4px; }
.blog-slide-card .card-body>div:first-child i { color: var(--primary); }
.blog-slide-card .card-body h4 { font-size: 1.15rem; font-weight: 800; color: #111827; line-height: 1.4; margin: 0; flex-shrink: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-slide-card .card-body>p { font-size: 0.9rem; color: #4b5563; line-height: 1.6; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-slide-card .card-body>div:last-child { margin-top: 16px; flex-shrink: 0; }
.blog-slide-card .btn-outline { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px 20px; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(229, 80, 57, 0.3); transition: all 0.3s ease; }
.blog-slide-card .btn-outline:hover { background: #d14428; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(229, 80, 57, 0.4); }

/* ============================================
   ROUTE CARD MODERN
   ============================================ */
.slide-item { flex: 0 0 auto; width: 320px; display: flex; }
.route-card-modern { background: #fff; border-radius: 16px; width: 100%; display: flex; flex-direction: column; position: relative; border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); overflow: hidden; }
.route-card-modern:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 105, 148, 0.15); }
.rc-image { height: 220px; position: relative; overflow: hidden; }
.rc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.route-card-modern:hover .rc-image img { transform: scale(1.1); }
.rc-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%); pointer-events: none; }
.rc-badge { position: absolute; top: 14px; right: 14px; display: flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.95); padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; color: var(--primary); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); z-index: 2; }
.rc-content { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.rc-info { margin-bottom: 16px; }
.rc-title a { font-size: 1.15rem; font-weight: 700; color: var(--secondary); text-decoration: none; line-height: 1.3; display: block; margin-bottom: 8px; transition: color 0.3s; }
.rc-title a:hover { color: var(--primary); }
.rc-excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rc-footer { padding-top: 14px; border-top: 1px solid #f1f2f6; display: flex; align-items: center; justify-content: flex-end; }
.btn-rc-detail { color: var(--primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; transition: all 0.3s; }
.btn-rc-detail i { transition: transform 0.3s; }
.btn-rc-detail:hover { color: var(--primary-dark); }
.btn-rc-detail:hover i { transform: translateX(4px); }

/* ============================================
   TRAVEL SERVICES
   ============================================ */
.ts-slide-item { flex: 0 0 auto; width: 25%; min-width: 280px; margin-right: 0; display: block; }
.travel-service-card { background: #fff; border-radius: 0; overflow: hidden; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid #eee; border-right: none; text-align: center; }
.ts-slide-item:last-child .travel-service-card { border-right: 1px solid #eee; }
.travel-service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); z-index: 2; position: relative; border-right: 1px solid #eee; }
.ts-image { height: 220px; position: relative; overflow: hidden; }
.ts-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.travel-service-card:hover .ts-image img { transform: scale(1.1); }
.ts-category { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); background: rgba(255, 255, 255, 0.9); padding: 5px 12px; border-radius: 0; font-size: 0.75rem; font-weight: 700; color: var(--primary); z-index: 2; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.ts-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.travel-service-card:hover .ts-overlay { opacity: 1; }
.ts-overlay i { color: #fff; font-size: 2rem; transform: scale(0.8); transition: transform 0.3s ease; }
.travel-service-card:hover .ts-overlay i { transform: scale(1); }
.ts-content { padding: 25px 20px; flex: 1; display: flex; flex-direction: column; align-items: center; }
.ts-content h4 { font-size: 1.15rem; font-weight: 700; color: var(--secondary); margin-bottom: 12px; line-height: 1.4; }
.ts-content p { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 20px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; max-width: 90%; }
.btn-ts-detail { font-size: 0.85rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding: 8px 16px; border: 1px solid var(--primary); transition: all 0.3s; }
.btn-ts-detail:hover { background: var(--primary); color: #fff; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.home-faq-list { max-width: 800px; margin: 0 auto; }
.home-faq-item { background: #fff; border-radius: 12px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); margin-bottom: 15px; border: 1px solid #eee; overflow: hidden; transition: all 0.3s ease; }
.home-faq-item:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
.home-faq-item.active { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); border-color: var(--primary); }
.home-faq-question { padding: 20px; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--secondary); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.home-faq-question:hover { background: #f9f9f9; }
.home-faq-question .faq-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #f1f5f9; color: var(--gray-500); transition: all 0.3s ease; flex-shrink: 0; margin-left: 15px; }
.home-faq-item.active .home-faq-question .faq-icon { transform: rotate(180deg); background: var(--primary); color: #fff; }
.home-faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); color: #555; line-height: 1.6; font-size: 0.95rem; }
.home-faq-item.active .home-faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; padding: 20px 0; }
.partners-grid .partner-item { background: #fff; padding: 15px 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); display: flex; align-items: center; justify-content: center; height: 100px; width: 180px; transition: all 0.3s ease; }
.partners-grid .partner-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); }
.partners-grid .partner-item img { max-width: 100%; max-height: 100%; }

/* ============================================
   GENERAL SECTION
   ============================================ */
section { position: relative; padding: 60px 0; }
.section-title h3 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 15px; text-align: center; }
.section-title p { color: #777; font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; text-align: center; line-height: 1.6; }

/* Slider */
.slider-container { position: relative; width: 100%; }
.slider-track { display: flex; gap: 30px; overflow-x: auto; padding: 20px 5px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: 50%; background: #fff; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); border: none; cursor: pointer; z-index: 10; color: var(--secondary); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.slider-btn:hover { background: var(--primary); color: #fff; }
.slider-prev { left: -20px; }
.slider-next { right: -20px; }

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.btn-view-all {
    display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 20px 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--secondary); text-decoration: none; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.5px; border-radius: 16px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.06), 0 16px 32px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.4); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; cursor: pointer;
}
.btn-view-all::before { content: ''; position: absolute; inset: -50%; background: linear-gradient(135deg, transparent 20%, rgba(229, 80, 57, 0.05) 40%, rgba(229, 80, 57, 0.1) 50%, rgba(229, 80, 57, 0.05) 60%, transparent 80%); transform: translateX(-100%) translateY(-100%) rotate(45deg); transition: transform 0.8s ease; }
.btn-view-all:hover::before { transform: translateX(100%) translateY(100%) rotate(45deg); }
.btn-view-all::after { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent); border-radius: 0 0 4px 4px; opacity: 0; transition: all 0.4s ease; }
.btn-view-all:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.12), inset 0 0 0 2px rgba(229, 80, 57, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.8); background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%); border-color: rgba(229, 80, 57, 0.3); }
.btn-view-all:hover::after { opacity: 1; top: -2px; }
.btn-view-all:active { transform: translateY(-1px) scale(1); transition: all 0.1s ease; }
.btn-view-all i { font-size: 1.2rem; color: var(--primary); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); filter: drop-shadow(0 2px 4px rgba(229, 80, 57, 0.2)); }
.btn-view-all:hover i { transform: translateX(6px) scale(1.1); }
.btn-view-all .view-all-count { background: linear-gradient(135deg, rgba(229, 80, 57, 0.12) 0%, rgba(229, 80, 57, 0.18) 100%); color: var(--primary); padding: 8px 16px; border-radius: 12px; font-size: 0.95rem; font-weight: 800; border: 1.5px solid rgba(229, 80, 57, 0.25); box-shadow: 0 2px 4px rgba(229, 80, 57, 0.1); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); min-width: 52px; text-align: center; position: relative; overflow: hidden; }
.btn-view-all:hover .view-all-count { background: linear-gradient(135deg, rgba(229, 80, 57, 0.2) 0%, rgba(229, 80, 57, 0.28) 100%); transform: scale(1.08); border-color: rgba(229, 80, 57, 0.4); }
.btn-view-all>span { position: relative; z-index: 1; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
.btn-view-all:focus { outline: none; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.08), 0 0 0 4px rgba(229, 80, 57, 0.15); }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .home-hero { min-height: auto; }
    .home-hero-container { padding: 120px 20px 40px; }
    .home-title { font-size: 2.4rem; }

    /* Mobilde form yapisi dikey olur */
    .search-main-inputs { flex-direction: column; background: transparent; border: none; padding: 0; gap: 16px; }
    .search-field { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 16px 20px; width: 100%; }
    .search-divider { display: none; }
    .search-field--submit { padding: 0; background: transparent; border: none; }
    .home-btn-search { width: 100%; height: 60px; border-radius: 14px; font-size: 1.15rem; }

    .home-search-form { gap: 16px; }
    .search-top-bar { justify-content: center; }
    .home-date-row { grid-template-columns: 1fr 1fr; }
    .home-search-bar-wrapper { padding: 0 16px 30px; }
    .home-search-card { border-radius: 18px; padding: 24px 20px; }

    /* Partners vs */
    .partners-grid { gap: 20px; }
    .partners-grid .partner-item { width: 45%; height: 80px; padding: 10px; }
    .home-faq-question { font-size: 0.95rem; padding: 15px; }
    .ts-slide-item { width: 260px; margin-right: 15px; }
    .ts-image { height: 160px; }
    .section-title h3 { font-size: 1.6rem; }
    .slider-prev { left: 0; }
    .slider-next { right: 0; }
    .blog-slide-card { min-width: 280px; width: 280px; }
    .blog-slide-card .card-image { height: 170px; }
    .blog-slide-card .card-body { padding: 16px; }
    .btn-view-all { padding: 18px 48px; font-size: 1rem; gap: 14px; }
    .btn-view-all .view-all-count { font-size: 0.9rem; padding: 7px 14px; min-width: 48px; }
    .hero-particles { display: none; }
}

@media (max-width: 768px) {
    .home-hero-container { padding: 100px 16px 30px; }
    .home-title { font-size: 2rem; }
    .home-badge { font-size: 0.78rem; padding: 8px 16px; }
    .home-description { font-size: 1rem; margin-bottom: 24px; }
    .home-features { gap: 8px; }
    .home-feature { font-size: 0.8rem; padding: 8px 14px; }
    .btn-view-all { padding: 16px 40px; font-size: 0.95rem; gap: 12px; border-radius: 14px; }
    .btn-view-all i { font-size: 1.1rem; }
    .btn-view-all .view-all-count { font-size: 0.85rem; padding: 6px 12px; min-width: 44px; }
}

@media (max-width: 576px) {
    .home-hero-container { padding: 90px 14px 24px; }
    .home-search-bar-wrapper { padding: 0 10px 24px; }
    .home-search-card { padding: 18px 14px; border-radius: 16px; }
    .home-title { font-size: 1.75rem; line-height: 1.2; }
    .hero-title-route { padding: 4px 12px; font-size: 0.95rem; }
    .hero-title-animated-line { height: 2.6rem; min-height: 2.6rem; margin-bottom: 16px; }
    .hero-title-cursor { height: 0.85em; }
    .home-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 20px; }
    .home-description { font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
    .home-feature { font-size: 0.78rem; padding: 7px 12px; }
    .home-feature i { font-size: 0.9rem; }

    /* Form fields */
    .search-field input[type="text"], .search-field input[type="date"], .home-form-group input, .home-route-input, .home-passenger-trigger, .home-passenger-trigger input {
        font-size: 16px !important; height: 48px;
    }
    .home-btn-search { height: 50px; border-radius: 12px; font-size: 0.95rem; }
    .home-radio-box { padding: 9px 12px; font-size: 0.8rem; }

    /* Mobile Dropdown - Bottom Sheet */
    .home-route-dropdown, .home-passenger-dropdown {
        position: fixed !important; top: auto !important; bottom: 0 !important; left: 0 !important; right: 0 !important; transform: translateY(100%) !important;
        width: 100vw !important; max-width: 100vw !important; max-height: 80vh; z-index: 999999 !important; background: #fff !important;
        visibility: hidden; pointer-events: none; box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.25); border-radius: 24px 24px 0 0;
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1); overflow-y: auto; -webkit-overflow-scrolling: touch;
    }

    .home-route-dropdown.active, .home-passenger-dropdown.active { visibility: visible !important; pointer-events: auto !important; transform: translateY(0) !important; }

    .home-route-wrapper { position: relative; z-index: 100; }
    .home-route-input, .home-passenger-trigger { cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; user-select: none; }
    .home-route-input { pointer-events: auto !important; -webkit-appearance: none; appearance: none; }
    .home-date-row { position: relative; z-index: 90; }
    .home-date-row input[type="date"] { touch-action: manipulation; -webkit-tap-highlight-color: transparent; position: relative; z-index: 91; pointer-events: auto !important; -webkit-appearance: none; appearance: none; text-align: center; }
    .home-form-group input[type="date"]::-webkit-calendar-picker-indicator { display: none !important; -webkit-appearance: none; }
    .home-route-option { touch-action: manipulation; -webkit-tap-highlight-color: transparent; cursor: pointer; min-height: 52px; padding: 16px 20px; font-size: 1rem; }
    .home-route-option i { font-size: 1.1rem; }
    .home-passenger-group { position: relative; z-index: 80; }

    /* Mobile Overlay */
    .mobile-dropdown-overlay {
        display: none; position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important; z-index: 99998 !important; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    }
    .mobile-dropdown-overlay.active { display: block !important; }

    .dropdown-header-mobile {
        display: flex !important; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid #e5e7eb;
        background: #f9fafb; border-radius: 16px 16px 0 0; position: sticky; top: 0; z-index: 1;
    }
    .dropdown-header-mobile span { font-weight: 600; color: #1f2937; font-size: 1rem; }
    .dropdown-close-btn {
        width: 32px; height: 32px; border-radius: 50%; border: none; background: #e5e7eb; color: #6b7280;
        display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 1rem;
    }
    .dropdown-close-btn:hover, .dropdown-close-btn:active { background: #d1d5db; color: #374151; }

    .btn-view-all { width: 100%; max-width: 400px; padding: 14px 32px; font-size: 0.9rem; gap: 10px; border-radius: 12px; }
    .btn-view-all i { font-size: 1rem; }
    .btn-view-all .view-all-count { font-size: 0.8rem; padding: 5px 10px; min-width: 40px; }
}

@media (min-width: 577px) {
    .mobile-dropdown-overlay, .dropdown-header-mobile { display: none !important; }
}

@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* ============================================
   MOBİL GÖRÜNÜM - PREMIUM APP STİLİ (AYDINLIK & TEMİZ)
   ============================================ */
@media (max-width: 768px) {
    /* 1. Kapsayıcıyı Alt Alta Dizilime Çevir */
    .home-hero, .home-hero.has-video {
        display: block !important;
        min-height: auto !important;
        background: #f8fafc !important; 
        padding-top: 0 !important;
    }

    /* Masaüstündeki video ve tam ekran cam efektlerini gizle */
    .hero-video-wrapper,
    .video-overlay-layer,
    .home-hero::before,
    .home-hero::after,
    .hero-particles {
        display: none !important;
    }

    /* 2. RESİM SADECE YAZILARIN ARKASINDA */
    .home-hero-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 90px 20px 60px !important; 
        background-image: url(/assets/img/default.png) !important; 
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        min-height: 45vh; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        margin: 0 !important;
    }

    .home-hero-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, rgba(0, 26, 44, 0.6) 0%, rgba(0, 48, 80, 0.8) 100%);
        z-index: 0;
    }

    .home-content-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    /* 3. İSTENMEYEN YAZILARI GİZLE */
    #hero-subtitle,
    #heroAnimatedLineWrap,
    #hero-features {
        display: none !important;
    }

    .home-title {
        font-size: 2.2rem !important;
        margin-bottom: 12px !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
    }

    .home-description {
        font-size: 1rem !important;
        margin-bottom: 0 !important; 
        color: rgba(255,255,255,0.9) !important;
    }

    /* 4. ARAMA KARTI: BOŞLUK SORUNU ÇÖZÜLDÜ (Negatif Margin Eklendi) */
    .home-search-bar-wrapper {
        padding: 0 !important; 
        /* top: -30px YERİNE MARGIN KULLANILARAK ALTTAKİ BOŞLUK YOK EDİLDİ */
        margin: -30px 0 0 0 !important; 
        width: 100%;
        z-index: 10;
        position: relative;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .home-search-card {
        border-radius: 24px 24px 0 0 !important; 
        border: none !important;
        background: #ffffff !important; 
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1) !important; 
        padding: 30px 20px 40px !important;
        margin: 0 !important;
    }

    /* 5. İÇ ELEMANLARIN RENKLERİNİ AÇIK TEMAYA UYARLAMA */
    .search-top-bar {
        margin-bottom: 24px !important;
        justify-content: center !important;
    }
    .home-trip-type {
        background: #f1f5f9 !important; 
        border: 1px solid #e2e8f0 !important;
        padding: 4px !important;
        border-radius: 12px !important;
        width: 100%;
        display: flex;
    }
    .home-radio { flex: 1; }
    .home-radio-box {
        justify-content: center !important;
        color: #64748b !important; 
        padding: 12px 10px !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .home-radio input:checked + .home-radio-box {
        background: #ffffff !important;
        color: var(--primary) !important; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        border-radius: 10px !important;
    }

    .search-main-inputs {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 16px !important;
    }

    .search-field {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important; 
        border-radius: 14px !important;
        padding: 14px 20px !important;
        width: 100%;
        box-shadow: 0 2px 6px rgba(0,0,0,0.02) !important;
    }

    .search-field label, .home-form-group label {
        color: #64748b !important;
        font-size: 0.75rem !important;
    }
    .search-field label i, .home-form-group label i {
        color: var(--primary) !important;
    }

    .home-search-card input[type="text"], 
    .home-search-card input[type="date"], 
    .home-route-input, 
    .home-passenger-trigger {
        color: #0f172a !important; 
        font-weight: 700 !important;
        font-size: 1.05rem !important;
    }
    
    .home-search-card input::placeholder {
        color: #94a3b8 !important;
        font-weight: 500 !important;
    }

    .home-dropdown-icon, .home-passenger-trigger i { color: #94a3b8 !important; }

    .home-search-card input[type="date"]::-webkit-calendar-picker-indicator {
        filter: none !important;
        opacity: 0.5;
    }

    .search-field--submit {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-top: 8px !important;
    }
    
    .home-btn-search {
        height: 60px !important;
        border-radius: 14px !important;
        font-size: 1.15rem !important;
        background: #e74c3c !important;
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3) !important;
    }
}

/* Daha küçük ekranlı telefonlar için hassas ayarlar */
@media (max-width: 576px) {
    .home-hero-container {
        padding: 80px 16px 50px !important;
        min-height: 40vh;
    }
    .home-title { font-size: 1.8rem !important; }
    .home-search-card { padding: 24px 16px 30px !important; }
    .search-field { padding: 12px 16px !important; }
    .home-btn-search { height: 56px !important; }
}