/* --- Contact Page Specific Styles --- */

/* Form Control Styling */
.contact-form .form-control {
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    color: #2d3748;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: #1e285d;
    box-shadow: 0 0 0 3px rgba(30, 40, 93, 0.1);
    outline: none;
}

.contact-form .form-label {
    font-weight: 600;
    color: #1e285d;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Contact Info Icon Boxes */
.contact-info i.fas {
    width: 48px;
    height: 48px;
    background-color: rgba(30, 40, 93, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #1e285d !important;
}

.contact-info li:hover i.fas {
    background-color: #1e285d;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.contact-info h6 {
    font-weight: 700;
    color: #1e285d;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Alert Customization */
.alert-success {
    background-color: #1e285d;
    border: none;
    color: #ffffff;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form .btn-primary-custom {
        padding: 10px 20px;
    }
}
