/* Reservation Page */
.reservation-section {
    padding: 80px 0;
    padding-top: 160px;
    background: var(--bg-light);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

.reservation-info h2,
.reservation-form h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-box h3 i {
    margin-right: 8px;
}

.schedule-table {
    width: 100%;
}

.schedule-table tr {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    font-size: 14px;
}

.schedule-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.schedule-table .holiday td {
    color: #e74c3c;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.quick-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.quick-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-contact .phone-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.quick-contact p {
    font-size: 14px;
    opacity: 0.9;
}

.reservation-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reservation-section {
        padding: 40px 0;
        padding-top: 110px;
    }
    
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
}