/* PAGE */
.tour-page {
    margin-top: 80px;
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'DM Sans', sans-serif;
}

/* TITLE */

.tour-title h1 {
    font-weight: 700;
}

.tour-meta {
    color: #777;
    font-size: 15px;
    margin-top: 5px;
}

/* GALLERY */

.tour-gallery img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

/* TOUR BOX */

.tour-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.tour-box h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* HIGHLIGHTS */

.highlight-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.highlight-card i {
    font-size: 30px;
    color: #d60000;
    margin-bottom: 10px;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

/* ITINERARY */

.timeline {
    border-left: 3px solid #d60000;
    padding-left: 20px;
    margin-bottom: 20px;
}

.timeline h6 {
    font-weight: 600;
}

/* BOOKING CARD */

.booking-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d60000;
}

.book-btn {
    background: #d60000;
    color: #fff;
    width: 100%;
    margin-bottom: 10px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    width: 100%;
}

.tour-list {
    margin-top: 20px;
}