:root { --orange: #ffa500; --dark: #0f172a; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f8fafc; }

.trip-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hero-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    border-radius: 0 0 50px 50px;
    padding: 40px; color: white;
}

.detail-card {
    background: white; border-radius: 30px; padding: 30px;
    border: 1px solid #e2e8f0; margin-bottom: 25px;
}
.stat-badge {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    background: #f1f5f9; border-radius: 20px; transition: 0.3s;
}
.stat-badge i { font-size: 1.5rem; color: var(--orange); }
        
.booking-sidebar {
    position: sticky; top: 100px;
    background: var(--dark); border-radius: 35px;
    padding: 35px; color: white;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.gallery-img {
    width: 100%; height: 300px; object-fit: cover;
    border-radius: 25px; transition: 0.4s;
}
.gallery-img:hover { transform: scale(1.02); }
        
.route-path { font-weight: 800; color: var(--orange); font-size: 1.1rem; }