/* Contact Specific Styles */

.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: #f5f3ff;
    color: var(--uc-purple);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--uc-purple);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.1);
}
