/* 
 * Skyland Bogor Valley - Booking Process CSS
 */

/* --- BOOKING GRID --- */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* --- FORMS --- */
.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.form-section h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-section h3 i {
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bg-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bg-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* --- SUMMARY SIDEBAR --- */
.summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.summary-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-gray);
}
.summary-room {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.summary-room img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
}
.summary-details {
    margin-bottom: 20px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
}
.summary-item strong {
    color: var(--text-main);
}
.summary-total {
    border-top: 2px dashed var(--bg-gray);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}
.summary-total .price {
    font-size: 1.5rem;
    color: var(--gold);
}

/* --- CONFIRMATION PAGE --- */
.confirm-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
    text-align: center;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(16,185,129,0.3);
}
.booking-code {
    background: var(--bg-light);
    border: 2px dashed var(--gold);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 24px 0;
    color: var(--black);
}

.bank-info {
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}
.bank-info h4 {
    margin-bottom: 16px;
    color: var(--black);
}
.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.bank-row:last-child {
    border-bottom: none;
}
.bank-row .label {
    color: var(--text-muted);
}
.bank-row .val {
    font-weight: 600;
    color: var(--black);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
        order: -1;
    }
}
@media (max-width: 768px) {
    .form-section { padding: 24px; }
    .confirm-box { padding: 24px; }
}
