/* WhatsApp CTA Styles */
.btn-whatsapp {
    background: #25D366;
    background: -webkit-linear-gradient(45deg, #128C7E, #25D366);
    background: -o-linear-gradient(45deg, #128C7E, #25D366);
    background: -moz-linear-gradient(45deg, #128C7E, #25D366);
    background: linear-gradient(45deg, #128C7E, #25D366);
    box-shadow: 0 4px 15px 0 rgba(37, 211, 102, 0.5);
    border: none !important;
    height: auto !important;
    padding: 12px 35px !important;
    min-height: 60px;
    flex-direction: row;
    /* Ensure icon and text are side-by-side but text is stacked */
    text-align: left;
    /* Text alignment */
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:active {
    background: #128C7E !important;
    background: -webkit-linear-gradient(45deg, #075E54, #128C7E) !important;
    background: -o-linear-gradient(45deg, #075E54, #128C7E) !important;
    background: -moz-linear-gradient(45deg, #075E54, #128C7E) !important;
    background: linear-gradient(45deg, #075E54, #128C7E) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.7);
    transform: translateY(-2px);
    border: none !important;
}

/* Ensure the icon stays vertically centered */
.btn-whatsapp i {
    font-size: 28px !important;
    margin-right: 15px !important;
}

/* Text styling wrapper if needed, but sticking to simple override first */

.whatsapp-anim {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}