:root {
    --tatil-red: #e30a17; /* Sarı yerine istediğin kırmızı tonu */
    --dark-blue: #003057;
    --light-gray: #f4f4f4;
}

body { background-color: #fcfcfc; font-family: 'Segoe UI', sans-serif; }

/* Navbar Özelleştirme */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.custom-nav .nav-link {
    color: #444;
    font-size: 13px;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.custom-nav .nav-link:hover {
    color: var(--tatil-red);
}

.custom-nav .nav-link.active {
    color: var(--tatil-red);
    border-bottom: 2px solid var(--tatil-red);
}

/* Logo Metin Rengi */
.navbar-brand span {
    letter-spacing: -1px;
}

/* Sayfa içeriğinin navbar altında kalmaması için */
body {
    padding-top: 0; 
}

.x-small { font-size: 11px; }
.bg-red { background-color: var(--tatil-red) !important; }
.text-red { color: var(--tatil-red) !important; }
.btn-dark-blue { background-color: var(--dark-blue); color: white; border: none; }
.btn-dark-blue:hover { background-color: #001f3a; color: white; }

/* Arama Kartı Tabları */
.search-card { border-radius: 8px 8px 0 0; overflow: hidden; }
.tab-item { background: #bbb; cursor: pointer; font-size: 12px; }
.tab-item.active { background: var(--tatil-red); color: white !important; font-weight: bold; }

/* Bannerlar */
.main-banner { height: 400px; background-size: cover; background-position: center; border-radius: 12px; }
.banner-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }

.category-banner { height: 350px; background-size: cover; display: flex; align-items: center; justify-content: center; }
.side-banner { height: 171px; background-size: cover; }

/* Kategori İkonları */
.cat-item { cursor: pointer; transition: 0.3s; background: white; }
.cat-item:hover { border-color: var(--tatil-red) !important; }
.cat-item i { font-size: 20px; }

/* Kart Detayları */
.hotel-card img { height: 150px; object-fit: cover; }
.promo-tag { background-color: #fff9e6; color: #d69e2e; font-size: 10px; padding: 4px; border-radius: 4px; border: 1px solid #f6e05e; }
/* Kırmızı tema istendiği için promo tag rengini değiştirebilirsiniz: */
.promo-tag { background-color: #fff5f5; color: var(--tatil-red); border: 1px solid #feb2b2; }



/* Araç Kiralama Banner */
.rent-a-car-banner {
    background: #0093E9;
    background: linear-gradient(90deg, #00b4db 0%, #0083b0 100%);
    height: 250px;
    background-image: url('https://limousineplus.com.tr/wp-content/uploads/2024/04/istanbul-airport-transfer.jpg'); /* Orijinal görsel yolu */
    background-size: cover;
    background-position: center;
}

/* Bilgi Kartları */
.info-card {
    background-color: #fff;
    transition: transform 0.2s;
}

.info-card:hover {
    border-color: var(--tatil-red) !important;
}

/* Footer Linkleri */
.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--tatil-red);
}

.footer-logo {
    line-height: 1;
}

.footer-logo .x-small {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: flex-start !important;
        gap: 10px;
    }
}


/* Transfer Banner Özelleştirmeleri */
.transfer-banner {
    height: 450px; /* Biraz daha derinlik katalım */
    border: 1px solid rgba(255,255,255,0.1);
}

.transfer-banner .banner-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.transfer-banner:hover .banner-img {
    transform: scale(1.05); /* Üzerine gelince hafif yaklaşma efekti */
}

.banner-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,48,87,0.9) 0%, rgba(0,48,87,0.3) 50%, transparent 100%);
    z-index: 2;
}

.transfer-content {
    position: relative;
    z-index: 3;
}

/* Cam Efektli Fiyat Kartı (Glassmorphism) */
.glass-price-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: fit-content;
}

/* Kırmızı Degrade Buton */
.btn-red-gradient {
    background: linear-gradient(45deg, #e30a17, #ff4d4d);
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-red-gradient:hover {
    background: linear-gradient(45deg, #b30812, #e30a17);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 10, 23, 0.4);
}

.badge.bg-red {
    background-color: var(--tatil-red);
    font-size: 0.8rem;
    letter-spacing: 1px;
}



/* Klinik Sayfası Özel Stilleri */
.service-detail img {
    transition: transform 0.3s ease;
}

.service-detail img:hover {
    transform: scale(1.01);
}

.custom-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.bg-red {
    background-color: #e30a17 !important;
}

.text-red {
    color: #e30a17 !important;
}

.text-dark-blue {
    color: #003057 !important;
}

.bg-dark-blue {
    background-color: #003057 !important;
}

/* Sidebar Listesi */
.list-group-item-action:hover {
    border-left: 3px solid #e30a17;
    padding-left: 20px;
    color: #e30a17;
}


/* Transfer Sayfası Özel Stilleri */
.step-num {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 35px;
    bottom: 20px;
    width: 2px;
    background-color: #eee;
    z-index: -1;
}

.bg-dark-blue {
    background-color: #003057 !important;
}

.btn-red-gradient {
    background: linear-gradient(45deg, #e30a17, #ff4d4d);
    color: white;
    border: none;
}



/* Tur Kartı Özel Stilleri */
.tour-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.tour-card .category-badge {
    opacity: 0.9;
    font-size: 11px;
}

.tour-card .card-title {
    font-size: 1.1rem;
}

.tour-card .card-text {
    line-height: 1.6;
}

.text-dark-blue {
    color: #003057;
}

.text-red {
    color: #e30a17;
}

/* Kırmızı Degrade Buton (Daha önce tanımlandıysa aynısı kalabilir) */
.btn-red-gradient {
    background: linear-gradient(45deg, #e30a17, #ff4d4d);
    color: white;
    border: none;
}


/* Tur Detay Özel Stilleri */
.main-tour-image img {
    height: 450px;
    object-fit: cover;
}

.step-time {
    min-width: 60px;
    font-size: 0.9rem;
}

.step-content {
    border-color: #eee !important;
    padding-bottom: 20px;
}

.border-dashed {
    border-style: dashed !important;
}

.bg-dark-blue {
    background-color: #003057 !important;
}

.text-red {
    color: #e30a17 !important;
}

/* Buton Efektleri */
.btn-red-gradient {
    background: linear-gradient(45deg, #e30a17, #ff4d4d);
    color: white;
    border: none;
    transition: 0.3s ease;
}

.btn-red-gradient:hover {
    transform: scale(1.02);
    color: white;
    filter: brightness(1.1);
}