/* detail.css - version single card */
.detail-single-wrapper {
    padding: 120px 0 4rem;
}

.detail-single-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.detail-single-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    image-rendering: auto;
}

.detail-single-content {
    padding: 2rem;
}

     
.detail-single-content h1 {
    color: #025920;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.detail-info-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem;
}

.detail-info-line p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.detail-info-line i {
    color: #F1A921;
    width: 24px;
}

.detail-tour-style {
    background: #fef5e8;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a8011c;
    margin-bottom: 1.8rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h2 {
    color: #025920;
    border-left: 5px solid #F1A921;
    padding-left: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.day {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.day h3 {
    font-size: 1.2rem;
    color: #a8011c;
    margin-bottom: 0.5rem;
}

.day p {
    line-height: 1.6;
    color: #4a4a4a;
}

.detail-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-content input,
.modal-content textarea {
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-single-wrapper {
        padding: 100px 0 2rem;
    }

    .detail-single-img {
        height: 250px;
    }

    .detail-info-line {
        gap: 0.8rem;
    }

    .detail-single-content h1 {
        font-size: 1.6rem;
    }
}