        /* ── Contact Info Cards ── */
        .contact-icon-wrap {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 50%;
            background: #d6e6f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #1a3a5c;
            transition: background .25s, transform .25s;
        }

        .contact-info-card:hover .contact-icon-wrap {
            background: #1a3a5c;
            color: #fff;
            transform: scale(1.08);
        }

        .contact-info-card {
            padding: 18px 20px;
            border-radius: 12px;
            transition: background .2s, box-shadow .2s;
            cursor: default;
        }

        .contact-info-card:hover {
            background: #f0f6fc;
            box-shadow: 0 4px 18px rgba(26,58,92,.08);
        }

        .contact-info-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a3a5c;
            margin-bottom: 4px;
        }

        .contact-info-text {
            color: #555;
            font-size: .95rem;
            line-height: 1.6;
        }

        .contact-info-text a {
            color: #555;
            text-decoration: none;
            transition: color .2s;
        }

        .contact-info-text a:hover {
            color: #1a3a5c;
            text-decoration: underline;
        }