/* ==========================================================================
   WhatsApp Integrations
   ========================================================================== */

.wa-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.wa-floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.wa-floating-btn svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-inline-cta {
    background: linear-gradient(135deg, #108a5c 0%, #25D366 55%, #2ecc71 100%);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
    margin: 0;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.wa-cta-section {
    padding-top: 0;
    padding-bottom: 44px;
}

.wa-inline-cta__text h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-family: var(--font-serif);
}

.wa-inline-cta__text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    max-width: 52ch;
}

.wa-inline-cta__btn {
    background: white;
    color: #0a7a6a;
    padding: 0.85rem 1.65rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.wa-inline-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .wa-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .wa-floating-btn svg {
        width: 30px;
        height: 30px;
    }
    .wa-inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    .wa-inline-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
