/* Modern Tours Page UI */
.tours-hero {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(135deg, #0A1325 0%, #1a2b48 100%);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.tours-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.tours-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.tours-search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px;
    max-width: 1000px;
    margin: 30px auto 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.tours-search-box {
    background: #fff;
    border-radius: 14px;
    display: flex;
    padding: 6px;
    gap: 6px;
}

.tours-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.tours-input-group i { color: #5191fa; margin-right: 12px; font-size: 20px; }
.tours-input-group label { display: block; font-size: 11px; font-weight: 700; color: #5e6d77; margin: 0; text-transform: uppercase; }
.tours-input-group select, .tours-input-group input { 
    border: none; background: transparent; width: 100%; font-size: 14px; font-weight: 600; color: #0A1325; outline: none; padding: 0;
}

.tours-submit-btn {
    background: linear-gradient(135deg, #5191fa 0%, #2f64d6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(81, 145, 250, 0.3);
}
.tours-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(81, 145, 250, 0.4); }

.main-content-section { padding: 40px 0 100px; background: #f8f9fa; }

/* Filter Styles */
.filter-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.filter-card h3 { font-size: 18px; font-weight: 700; color: #0A1325; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.filter-card h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: #5191fa; }

.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 12px; }

.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #5e6d77;
    transition: color 0.2s;
}
.custom-radio:hover { color: #5191fa; }

/* Tour Card Styling */
.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(0,0,0,0.08); }

.tour-thumb { position: relative; height: 240px; overflow: hidden; }
.tour-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tour-card:hover .tour-thumb img { transform: scale(1.1); }

.tour-discount {
    position: absolute;
    top: 15px; right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.tour-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(81, 145, 250, 0.9);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.tour-body { padding: 25px; }
.tour-location { font-size: 13px; color: #5191fa; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.tour-title { font-size: 19px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; height: 53px; overflow: hidden; }
.tour-title a { color: #0A1325; text-decoration: none; transition: color 0.2s; }
.tour-title a:hover { color: #5191fa; }

.tour-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f0f0f0; margin-top: 15px; }
.tour-duration { font-size: 13px; color: #5e6d77; display: flex; align-items: center; gap: 5px; }
.tour-price-box { text-align: right; }
.tour-price-box .price-label { display: block; font-size: 11px; color: #a0a6ad; text-transform: uppercase; font-weight: 700; }
.tour-price-box .price-value { font-size: 22px; font-weight: 800; color: #0A1325; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 991px) {
    .tours-search-box { flex-direction: column; }
    .tours-submit-btn { padding: 15px; width: 100%; }
}

