/* Contact Page Styles */
.contact-section {
    min-height: 60vh;
}

.contact-section .card {
    border: none;
}

.contact-section .btn-primary {
    background-color: #F36D21;
    border-color: #F36D21;
}

.contact-section .btn-primary:hover {
    background-color: #e05a0c;
    border-color: #e05a0c;
}

.contact-section .card-title i {
    margin-right: 0.5rem;
}

/* Form Styles */
.contact-section .form-control:focus {
    border-color: #F36D21;
    box-shadow: 0 0 0 0.2rem rgba(243, 109, 33, 0.25);
}

.contact-section select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem;
}

.contact-section select.form-control:focus {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23F36D21' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    border-color: #F36D21 !important;
}

/* Captcha Styles */
#captcha-question {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

#refresh-captcha {
    padding: 8px 12px;
}

#refresh-captcha:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Mobile Input */
input[type="tel"] {
    letter-spacing: 1px;
}

/* Validation Feedback */
.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* Card Icons Colors */
.text-primary-orange {
    color: #F36D21;
}

.text-primary-blue {
    color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section .col-md-6 {
        margin-bottom: 1rem;
    }
    
    #captcha-question {
        font-size: 14px;
        min-width: 100px;
    }
    
    #captcha {
        width: 80px !important;
    }
}