/* Fixed WhatsApp and Call Icons */
.fixed-contact-icons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}
.fixed-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}
.fixed-icon:hover {
    box-shadow: 0 8px 28px rgba(245,165,0,0.18);
    transform: scale(1.09);
}
.fixed-icon.whatsapp-icon {
    background: #0ab64a !important;
    animation: pulse-green 1.6s infinite;
}
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(10,184,74,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(10,184,74,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10,184,74,0);
    }
}
.fixed-icon.whatsapp-icon i.fa-whatsapp {
    color: #fff !important;
    font-size: 1.7em;
    transition: color 0.18s;
}
.fixed-icon.whatsapp-icon:hover {
    background: #087a36 !important;
}
.fixed-icon.call-icon {
    background: #ff3b30 !important;
    animation: pulse-red 1.6s infinite;
}
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255,59,48,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255,59,48,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,59,48,0);
    }
}
.fixed-icon.call-icon i.fa-phone {
    color: #fff !important;
    font-size: 1.7em;
    transition: color 0.18s;
}
.fixed-icon.call-icon:hover {
    background: #c23026 !important;
}

@media (max-width: 700px) {
    .fixed-contact-icons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    .fixed-icon {
        width: 70px;
        height: 70px;
    }
}
