/* Header social icons (replaces hotline block) */
.header-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-social-links li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.header-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(37, 61, 78, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}

.header-social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 61, 78, 0.18);
}

.header-social-links a img {
    width: 16px;
    height: 16px;
    display: block;
    margin: 0 !important;
    vertical-align: middle;
}

.header-info-right > ul > li.header-social-item {
    display: inline-flex;
    align-items: center;
    padding-right: 12px;
}

/* Floating WhatsApp */
.chozhan-whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 88px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chozhan-whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.chozhan-whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
    position: relative;
    z-index: 1;
}

.chozhan-whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: chozhan-wa-pulse 2s ease-out infinite;
    z-index: 0;
}

@keyframes chozhan-wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .chozhan-whatsapp-float {
        right: 14px;
        bottom: 76px;
        width: 52px;
        height: 52px;
    }
}
