/* Contact Page Styles */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #14899a;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

.form-control:hover {
    border-color: #86b7fe;
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-label i {
    color: #007bff;
}

/* Required field styling */
.required-field {
    font-weight: 600;
}

.required-field .text-danger {
    font-weight: bold;
    font-size: 1.1em;
}

/* Message field alignment */
#message {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    resize: vertical;
    min-height: 120px;
}

/* Form container styling */
.form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.15s ease-in-out;
    line-height: 1.5;
}

/* Ensure consistent spacing */
.mb-3 {
    margin-bottom: 1rem !important;
}

/* Subject field full width styling */
#subject {
    width: 100%;
}

/* Button Styles */
/*.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
    transform: translateY(-1px);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    border-bottom: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Success/Error Messages */
.alert {
    border-radius: 0.5rem;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Form Validation Styles - Completely disabled visual indicators */
.was-validated .form-control:valid {
    border-color: #ced4da; /* Keep normal border color */
}

.was-validated .form-control:invalid {
    border-color: #ced4da; /* Keep normal border color */
}

/* Disable all validation visual feedback */
.form-control.is-valid {
    border-color: #ced4da !important;
    background-image: none !important;
    padding-right: 1rem !important;
}

.form-control.is-invalid {
    border-color: #ced4da !important;
    background-image: none !important;
    padding-right: 1rem !important;
} 