.package-options {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.package-box {
    flex: 1;
    padding: 22px;
    border-radius: 12px;
    background: #f3f4f6;
    transition: 0.3s;
    border: 1px solid transparent;
}

.package-box:hover {
    transform: translateY(-3px);
}

.package-box.active {
    background: #fff;
    border: 2px solid #f97316;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.package-box strong {
    color: #f97316;
    display: block;
    margin-top: 10px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f97316;
}

.reservation-summary {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.reservation-summary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.summary-list div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #444;
}

.total {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    font-weight: 600;
}

.total strong {
    color: #f97316;
    font-size: 24px;
}

.btn-confirm {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249,115,22,.3);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 50px;
    margin-top: 100px;
}

.reservation-header h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
}

.reservation-header p {
    color: #6b7280;
}