/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE STYLES — RootAxis Technologies
   ═══════════════════════════════════════════════════════════ */
.contact-info-card {
    border: 1px solid var(--ra-border);
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(var(--ra-primary-rgb), 0.2);
}
.contact-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-control-premium {
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid var(--ra-border);
    background: var(--ra-surface-alt);
    transition: all 0.3s ease;
}
.form-control-premium:focus {
    background: #fff;
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 4px rgba(var(--ra-primary-rgb), 0.1);
}
