.catering-booking-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.catering-booking-form h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3338;
    font-size: 2.2rem;
    font-weight: 700;
}

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.form-section h3 {
    margin: 0 0 25px 0;
    color: #2c3338;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3338;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
    background: #fff;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-category {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-category h4 {
    margin: 0 0 20px 0;
    color: #007cba;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background: #fafbfc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #007cba;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.item-header h5 {
    margin: 0;
    color: #2c3338;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.item-price {
    background: #007cba;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.item-description {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-controls label {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.item-quantity {
    width: 80px !important;
    padding: 8px 10px !important;
    text-align: center;
}

.booking-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.summary-header h3 {
    margin: 0 0 25px 0;
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

.summary-details {
    max-width: 400px;
    margin: 0 auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid rgba(255,255,255,0.3);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
    padding-top: 20px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-booking {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(40,167,69,0.3);
}

.submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
}

.submit-booking:active {
    transform: translateY(0);
}

/* Vendor Registration Styles */
.catering-vendor-registration {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.catering-vendor-registration h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3338;
    font-size: 2.2rem;
    font-weight: 700;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.checkbox-group label:hover {
    background: #e9ecef;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.submit-registration {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,124,186,0.3);
    width: 100%;
    max-width: 300px;
}

.submit-registration:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,124,186,0.4);
}

/* Success Modal */
#booking-success .modal-content {
    text-align: center;
    padding: 50px 40px;
}

#booking-success h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#booking-success p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.close-modal {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: #005a87;
}

/* Responsive Design */
@media (max-width: 768px) {
    .catering-booking-form,
    .catering-vendor-registration {
        padding: 20px;
        margin: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .item-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .item-price {
        align-self: flex-start;
    }
}