/* Enhanced Contact Form Styles */

.contact .php-email-form select.form-control {
    height: 55px;
    padding: 15px 50px 15px 20px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.contact .php-email-form select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.contact .cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact .submit-btn,
.contact .call-btn,
.contact .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.contact .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.contact .call-btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.contact .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.4);
}

.contact .whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.contact .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contact .contact-note {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.contact .contact-note i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.contact .contact-note a {
    color: #856404;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #ffc107;
}

.contact .contact-note a:hover {
    color: #533f03;
    border-bottom-color: #533f03;
}

.contact .sent-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: none;
    margin-bottom: 20px;
}

.contact .sent-message.d-block {
    display: block !important;
}

.contact .sent-message i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact .error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: none;
    margin-bottom: 20px;
}

.contact .error-message.d-block {
    display: block !important;
}

.contact .loading {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #17a2b8;
    color: #0c5460;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: none;
    margin-bottom: 20px;
    text-align: center;
}

.contact .loading.d-block {
    display: block !important;
}

.contact .loading i {
    font-size: 24px;
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact .cta-buttons {
        flex-direction: column;
    }
    
    .contact .submit-btn,
    .contact .call-btn,
    .contact .whatsapp-btn {
        width: 100%;
        min-width: auto;
    }
    
    .contact .contact-note {
        font-size: 13px;
    }
}
