/* Header */
.detail-header {
    padding-top: 100px;
    padding-bottom: 80px;
    margin-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bs-primary);
}
.timeline-item {
    position: relative;
    padding-bottom: 20px;
}
.timeline-time {
    position: absolute;
    left: -30px;
    top: 0;
    background: var(--bs-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}
.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-left: 20px;
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f8f9fa;
}

/* Destinasi Card */
.destination-card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.destination-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.destination-card .card-body {
    padding: 0.75rem;
}
.destination-card .card-title {
    font-size: 1rem;
    font-weight: 600;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 600;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: white;
}


/* Responsive */
@media (max-width: 992px) {
    .detail-header {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .booking-form {
        position: static !important;
    }
}
