/* Tours Slider & Cards CSS */
.tours-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Page Hero */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -80px; /* Navbar transparent offset */
    padding-top: 80px;
    background-attachment: fixed; /* Parallax feel */
}

.page-hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.page-hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 0.9rem;
    color: #6c757d;
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color, #F39C12);
}

.breadcrumb-nav i {
    font-size: 0.7rem;
    color: #ccc;
}

.breadcrumb-nav span {
    color: var(--primary-color, #F39C12);
    font-weight: 600;
}

/* Tour Cards */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .card-img-top {
    transform: scale(1.1);
}

.card-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-badge i {
    color: var(--primary-color, #F39C12);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.4;
}

.tour-footer {
    border-top: 1px solid #f0f0f0 !important;
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

/* Container & Grid Utilities (Bootstrap-like) - Keep essential ones */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.flex-column { flex-direction: column; }
.flex-grow-1 { flex-grow: 1; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-auto { margin-top: auto !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

.position-relative { position: relative; }
.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }

.fw-bold { font-weight: 700 !important; }
.text-muted { color: #6c757d !important; }
.text-primary { color: var(--primary-color, #F39C12) !important; }
.text-uppercase { text-transform: uppercase; }
.small { font-size: 0.875em; }

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: .85rem;
}

.rounded-pill { border-radius: 50rem !important; }

.btn-primary {
    color: #fff;
    background-color: var(--primary-color, #F39C12);
    border-color: var(--primary-color, #F39C12);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background-color: #d68910;
    border-color: #d68910;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color, #F39C12);
    border-color: var(--primary-color, #F39C12);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color, #F39C12);
    border-color: var(--primary-color, #F39C12);
}


/* Minimal Card Styles for Swiper */
.tour-slide-card.minimal-card {
    transition: transform 0.3s ease;
    margin: 10px; /* Swiper'ın hesaplaması dışında manuel margin ekleyerek ayrışmayı garanti altına alalım */
}

.tourSwiper .swiper-slide {
    padding-bottom: 20px; /* Gölgenin kesilmemesi için */
}

.tour-slide-card.minimal-card:hover {
    transform: translateY(-5px);
}

.tour-slide-card.minimal-card .card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Daha hafif gölge */
    transition: box-shadow 0.3s ease;
}

.tour-slide-card.minimal-card:hover .card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tour-slide-card.minimal-card .img-holder {
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* Köşeleri yumuşat */
    position: relative;
}

.tour-slide-card.minimal-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-slide-card.minimal-card:hover .card-img-top {
    transform: scale(1.05); /* Hoverda hafif zoom */
}

.tour-duration-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tour-duration-badge i {
    color: #555;
}

/* Minimal Card Body */
.tour-slide-card.minimal-card .card-body {
    padding: 15px 20px 20px 20px !important;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F39C12; /* Turuncu ton */
}

.btn-inspect {
    background: #F39C12;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-inspect:hover {
    background: #e67e22;
    color: #fff;
    transform: translateX(3px);
}

/* Swiper Navigation Buttons */
.custom-nav-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #333 !important;
}

.custom-nav-btn::after {
    font-size: 16px !important;
    font-weight: bold;
}

.custom-nav-btn:hover {
    background: #F39C12;
    color: #fff !important;
}

.swiper-button-prev.custom-nav-btn {
    left: 0;
}

.swiper-button-next.custom-nav-btn {
    right: 0;
}

/* Tours Header - Responsive */
.tours-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tours-title-box {
    text-align: left;
}

@media (max-width: 768px) {
    .tours-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tours-title-box {
        width: 100%;
    }

    .btn-see-all {
        align-self: flex-start; /* Butonu sola yasla */
        padding: 8px 20px !important;
        font-size: 0.9rem;
    }
}


.tourSwiper {
    padding: 20px 5px 40px 5px !important; /* Gölge ve taşma için pay */
}

/* Eski slider CSS'lerini override etmek gerekirse buraya ekle */
.tour-slide-card {
    width: 100% !important; /* Genişliği kapsayıcıya zorla */
    min-width: 0 !important; /* Eski min-width'i ez */
    box-sizing: border-box; /* Padding ve border dahil et */
}

.swiper-slide {
    height: auto !important; /* Yüksekliği içeriğe göre ayarla */
    display: flex; /* Flex ile kartın tam oturmasını sağla */
    justify-content: center;
}

.tour-slide-card.minimal-card {
    margin: 0 !important; /* Manuel margini kaldır, spaceBetween yeterli */
    width: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: var(--primary-color, #F39C12);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev { left: -15px; }
.slider-nav.next { right: -15px; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .page-hero { 
        height: 50vh; 
        min-height: 300px;
    }
    
    .page-hero h1 { 
        font-size: 2rem; 
        line-height: 1.2;
    }

    .page-hero p {
        font-size: 1rem;
    }
    
    .slider-nav { display: none; }
    
    .tour-slide-card { 
        flex: 0 0 280px; 
        min-width: 280px; 
    }

    .tours-section {
        padding: 40px 0;
    }

    .breadcrumb-nav {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}
