/* --- Tour Detail Section --- */
.tour-detail-section {
    padding-bottom: 80px;
}

/* Hero Image */
.tour-hero-image {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Layout */
.tour-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Kiri lebih lebar (2 bagian), Kanan 1 bagian */
    gap: 40px;
    align-items: start;
}

/* --- Left Column (Main Info) --- */
.tour-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 20px;
}

.tour-highlight {
    font-size: 15px;
    color: var(--text-muted);
    /* Warna abu-abu teks */
    line-height: 1.8;
    margin-bottom: 40px;
}

.tour-highlight .text-dark {
    color: var(--text-main);
    font-weight: 700;
}

/* Info Boxes (Cara Booking & Notes) */
.info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-icon {
    color: #6B3C92;
    /* Ungu Naraya */
    font-size: 20px;
}

.info-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin: 0;
}

.info-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Custom Bullet Point */
.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-weight: bold;
}

/* --- Right Column (Sidebar Price) --- */
.tour-sidebar {
    position: sticky;
    top: 130px;
    /* Membuat card melayang mengikuti scroll */
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.price-icon {
    color: #6B3C92;
    font-size: 20px;
}

.price-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.price-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e1;
}

.p-label {
    color: #64748b;
}

.p-value {
    color: #475569;
    font-weight: 700;
}

/* Tombol WA */
.btn-booking-wa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #16a34a;
    /* Hijau WhatsApp */
    color: white;
    padding: 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-booking-wa:hover {
    background-color: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    color: white;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .tour-hero-image {
        height: 350px;
    }

    .tour-content-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {

    /* Mengubah grid menjadi 1 kolom (atas-bawah) */
    .tour-content-wrapper {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
        /* Hilangkan sticky di mobile */
        margin-top: 20px;
    }

    .tour-hero-image {
        height: 250px;
        border-radius: 16px;
    }

    .tour-title {
        font-size: 24px;
    }

    .info-box,
    .price-card {
        padding: 24px;
    }
}