/* Packages */

.package-card {
    background: var(--surface-color);
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.package-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(223, 148, 6, 0.1);
    color: var(--accent-color);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.package-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--heading-color);
}

.package-price {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 10px 0 15px;
}

.package-description {
    font-size: 14px;
    color: var(--default-color);
    opacity: 0.85;
}

.package-btn {
    border-radius: 10px;
    font-weight: 600;
}


/* Package Detail */
.detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.detail-card {
    background: var(--surface-color);
    border-radius: 22px;
    padding: 50px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
}

.detail-price {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 15px 0 25px;
}

.detail-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.detail-content {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--default-color);

    /* THIS handles line breaks properly */
    white-space: pre-line;
}

.detail-content strong {
    display: inline-block;
    margin-top: 12px; /* space ABOVE */
    margin-bottom: 0; /* no gap below */
    font-weight: 600;
    color: var(--heading-color);
}

.detail-image {
    border-radius: 14px;
    margin-bottom: 30px;
}

.back-link {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.cta-box {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-text {
    font-size: 14px;
    color: #777;
}

.btn-premium {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.detail-content .bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -1px;
}

.detail-content ul {
    padding-left: 18px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.detail-content li {
    margin-bottom: 6px;
    font-size: 15px;
}


/* Booking Form */

.booking-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.booking-form .form-control {
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--default-color);
    background: #fff;
}

.booking-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.15rem rgba(223, 148, 6, 0.12);
}

.booking-form textarea.form-control {
    resize: vertical;
}

.booking-summary {
    background: rgba(223, 148, 6, 0.08);
    border: 1px solid rgba(223, 148, 6, 0.16);
    border-radius: 16px;
    padding: 18px;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-summary strong {
    color: var(--heading-color);
}

.booking-summary span {
    color: var(--default-color);
    text-align: right;
}

.booking-summary small {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 13px;
}

.alert {
    border-radius: 12px;
    font-size: 14px;
}


.booking-help-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #777;
}

