.hero-tour {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
}

.gallery-image {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.itinerary-step {
    position: relative;
    padding-left: 2rem;
}

.itinerary-step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #1e40af;
    border-radius: 50%;
}

.itinerary-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 1.5rem;
    bottom: -1rem;
    width: 2px;
    background-color: #d1d5db;
}

.booking-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
