/* СТИЛИ ДЛЯ СТРАНИЦЫ ТУРОВ */
.tour-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), url('images/tour-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.tour-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: #000;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.tour-content p {
    color: #bbb;
    margin-bottom: 20px;
    min-height: 60px;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.tour-info {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 0.9rem;
}

.tour-info i {
    margin-right: 8px;
    color: var(--accent);
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.back-to-rent {
    padding: 4rem 0;
    text-align: center;
}

.back-to-rent .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.back-to-rent .btn i {
    margin-right: 10px;
}