/* Appointment Template Styles */
.appointment-page {
    padding: 40px 0;
}

.appointment-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.appointment-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.appointment-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

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

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.appointment-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: #007bff;
}

.appointment-form .form-row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.appointment-form .form-row .form-group {
    padding-left: 10px;
    padding-right: 10px;
}

.appointment-form .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.appointment-form .checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.btn-appointment {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-appointment:hover {
    background: #0056b3;
}

.btn-appointment:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin: 15px 0;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Sidebar Styles */
.appointment-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.contact-list li i {
    width: 30px;
    color: #007bff;
    font-size: 16px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.btn-whatsapp,
.btn-call {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.btn-call {
    background: #007bff;
    color: #fff;
}

.btn-call:hover {
    background: #0056b3;
    color: #fff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #28a745;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-form .form-row {
        flex-direction: column;
    }
    
    .appointment-sidebar {
        margin-top: 30px;
        position: static;
    }
}
