/* ---------- APPOINTMENT PAGE STYLES ---------- */
/* Form container styling */
.appointment-form-container {
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.appointment-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Form section titles */
.form-section-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* Form fields styling */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-control::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* Checkboxes */
.form-check {
    margin-top: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.form-check-label {
    font-size: 14px;
}

/* Submit button */
.btn-custom.primary {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Emergency service box */
.emergency-service-box {
    background: linear-gradient(45deg, #2c3e50, #3a546b);
    border-radius: 10px;
    padding: 25px 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.emergency-service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.emergency-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.emergency-content h3 i {
    color: #e74c3c;
    margin-right: 10px;
}

.emergency-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.emergency-phone {
    font-size: 24px;
    font-weight: 700;
    color: white;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    color: #e74c3c;
}

/* Responsive Styles for Appointment Page */
@media (max-width: 992px) {
    .appointment-form-container {
        padding: 20px;
    }
    
    .emergency-content h3 {
        font-size: 20px;
    }
    
    .emergency-phone {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .form-section-title {
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-control, .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .emergency-service-box {
        padding: 20px;
    }
    
    .emergency-content h3 {
        font-size: 18px;
    }
    
    .emergency-content p {
        font-size: 14px;
    }
    
    .emergency-phone {
        font-size: 20px;
    }
}
