/* Temel Ayarlar */
:root { 
    --primary: #4e73df; 
    --secondary: #224abe; 
    --bg: #f8fafc; 
    --text: #1e293b;
    --muted: #64748b;
}

body { 
    background: var(--bg); 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: var(--text); 
    scroll-behavior: smooth; 
}

.fw-800 { font-weight: 800; }

/* Navigasyon */
.navbar { background: white; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 15px 0; }
.navbar-brand { font-weight: 800; color: var(--primary); font-size: 1.5rem; letter-spacing: -1px; }

@media (max-width: 991.98px) {
    .navbar-collapse { padding: 1rem 0; }
    .navbar-nav .nav-link { padding: 0.8rem 0; border-bottom: 1px solid #f1f5f9; }
}

/* Hero ve Arama */
.hero-section { 
       background: #ebebeb;
    padding: 80px 0 120px;
    color: #000000;
}
.search-wrapper { margin-top: -80px; position: relative; z-index: 10; }
.search-card { 
    background: white; 
    border-radius: 24px; 
    padding: 25px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border: 1px solid rgba(0,0,0,0.05); 
}

/* Kategori Hapları */
.category-scroll { display: flex; overflow-x: auto; gap: 10px; padding: 10px 0; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.cat-pill { 
    background: white; 
    padding: 10px 20px; 
    border-radius: 50px; 
    text-decoration: none; 
    color: var(--muted); 
    font-weight: 600; 
    font-size: 0.9rem; 
    white-space: nowrap; 
    border: 1px solid #e2e8f0; 
    transition: 0.3s; 
}
.cat-pill:hover, .cat-pill.active { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

/* Mağaza Kartları */
.shop-card { background: white; border-radius: 28px; border: 1px solid #f1f5f9; transition: 0.4s; height: 100%; position: relative; overflow: hidden; }
.shop-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); }
.card-image-area { height: 180px; position: relative; border-radius: 24px; overflow: hidden; margin: 10px; }
.card-cover-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.shop-card:hover .card-cover-img { transform: scale(1.1); filter: brightness(0.8); }

.city-tag { 
    position: absolute; top: 15px; left: 15px; 
    background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); 
    padding: 6px 14px; border-radius: 50px; 
    font-size: 0.75rem; font-weight: 800; color: #1e293b; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.logo-box { 
    width: 70px; height: 70px; background: white; border-radius: 22px; 
    padding: 5px; position: absolute; bottom: -20px; right: 20px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); z-index: 2; 
}
.logo-box img { width: 100%; height: 100%; border-radius: 18px; object-fit: cover; }

.rating-stars { color: #ffb800; font-size: 0.85rem; }
.btn-booking { 
    background: var(--primary); color: white; border-radius: 16px; padding: 12px; 
    font-weight: 700; width: 100%; border: none; transition: 0.3s; 
    text-decoration: none; display: block; text-align: center; 
}
.btn-booking:hover { background: var(--secondary); color: white; }

/* Gelişmiş Özellikler (Features) */
.feature-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #f1f5f9;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.feature-icon {
    width: 65px; height: 65px;
    background: #eef2ff; color: var(--primary);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
}

/* CTA Banner (Kayıt Ol Bölümü) */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 30px; padding: 50px;
    position: relative; overflow: hidden; margin-top: 50px;
}
.cta-circles { position: absolute; top: 50%; right: -5%; transform: translateY(-50%); width: 300px; height: 300px; z-index: 1; }
.cta-circle { position: absolute; border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.circle-1 { width: 100%; height: 100%; }
.circle-2 { width: 70%; height: 70%; }
.circle-3 { width: 40%; height: 40%; }
.cta-content { position: relative; z-index: 2; }

@media (max-width: 991px) {
    .cta-banner { padding: 40px 20px; text-align: center; }
    .cta-circles { display: none; }
}

/* İstatistik Bandı */
.stats-band {
    background: white; border-radius: 25px; padding: 30px;
    border: 1px solid #f1f5f9; margin-top: -30px;
    position: relative; z-index: 5;
}
.stat-card-mini { display: flex; align-items: center; gap: 15px; padding: 10px 20px; border-right: 1px solid #f1f5f9; }
.stat-card-mini:last-child { border-right: none; }
.stat-icon-circle { 
    width: 50px; height: 50px; background: #f8fafc; color: var(--primary); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; 
}
.stat-info h6 { font-weight: 800; margin-bottom: 2px; color: var(--text); }
.stat-info span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

@media (max-width: 991px) {
    .stats-band { margin-top: 20px; padding: 20px; }
    .stat-card-mini { border-right: none; border-bottom: 1px solid #f1f5f9; padding: 15px 0; }
    .stat-card-mini:last-child { border-bottom: none; }
}

/* Footer */
.footer { background: #1e293b; color: #f8fafc; padding: 80px 0 30px; margin-top: 100px; }
.footer-brand { font-weight: 800; font-size: 1.8rem; color: #fff; letter-spacing: -1px; text-decoration: none; }
.footer-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 25px; position: relative; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--primary); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; padding-top: 30px; font-size: 0.9rem; color: #64748b; }
.payment-icons img { filter: grayscale(1) opacity(0.5); height: 25px; margin-left: 15px; }

/* Select2 Custom */
.select2-container--default .select2-search--dropdown .select2-search__field { border-radius: 8px; }

/* Tüm elemanları 55px yüksekliğine zorla */
.search-card .form-control, 
.search-card .form-select,
.search-card .input-group-text,
.search-card .btn {
    height: 55px !important;
}

/* Select2 Özel Yükseklik Ayarı */
.select2-container--default .select2-selection--single {
    height: 55px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 15px !important;
}

/* Select2 Ok İşaretini Ortala */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 53px !important;
    top: 1px !important;
}

/* Input Group içindeki ikon kutusunu düzelt */
.search-card .input-group-text {
    border-radius: 15px 0 0 15px !important;
}