/* Contact Page Styles */

.contact-header {
    background: var(--gradient-aqua-navy);
    color: white;
    padding: 5rem 0 3.75rem;
}

.contact-card {
    background: white;
    border-radius: 0.9375rem;
    padding: 2.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    margin-top: -3.125rem;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    border: 0.0625rem solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-color: var(--brand-aqua);
}

.contact-info-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: var(--gradient-aqua-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.5rem;
}
