/* Premium branded social buttons in the top contact bar. */
.eh-social-group {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.eh-contact-group .eh-social-link {
    position: relative;
    isolation: isolate;
    width: 50px !important;
    height: 50px !important;
    display: grid !important;
    flex: 0 0 50px;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.92) !important;
    border-radius: 16px !important;
    color: #fff !important;
    font-size: 21px !important;
    text-decoration: none;
    box-shadow: 0 10px 23px rgba(12, 58, 79, .18), inset 0 1px 0 rgba(255,255,255,.38) !important;
    transform: translateZ(0);
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, filter .3s ease !important;
}

.eh-contact-group .eh-social-link::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(255,255,255,.12);
    transform: translateY(105%);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.eh-contact-group .eh-social-link.facebook {
    background: linear-gradient(145deg, #2d88ff 0%, #1877f2 58%, #0f5fc9 100%) !important;
}

.eh-contact-group .eh-social-link.instagram {
    background: radial-gradient(circle at 30% 105%, #ffd600 0 23%, #ff7a00 34%, #ff0169 55%, #d300c5 76%, #7638fa 100%) !important;
}

.eh-contact-group .eh-social-link i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.18));
}

.eh-contact-group .eh-social-link:hover {
    color: #fff !important;
    filter: saturate(1.12) brightness(1.04);
    transform: translateY(-4px) rotate(-3deg) scale(1.05) !important;
    box-shadow: 0 16px 30px rgba(12, 58, 79, .26), inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.eh-contact-group .eh-social-link:hover::before {
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .eh-contact-group .eh-social-link {
        width: 45px !important;
        height: 45px !important;
        flex-basis: 45px;
        border-radius: 14px !important;
        font-size: 19px !important;
    }
}

@media (max-width: 640px) {
    .eh-social-group { gap: 6px; }

    .eh-contact-group .eh-social-link {
        width: 39px !important;
        height: 39px !important;
        flex-basis: 39px;
        border-radius: 12px !important;
        font-size: 17px !important;
        box-shadow: 0 7px 16px rgba(12, 58, 79, .16) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eh-contact-group .eh-social-link,
    .eh-contact-group .eh-social-link::before {
        transition: none !important;
    }
}
