/* ==================================================
   NX WHATSAPP BUTTON (CLEAN LUXURY FLOATING PILL)
================================================== */

.nx-wa-btn {
    position: fixed !important;
    right: 1.25rem !important;
    bottom: 1.5rem !important;
    z-index: 99999 !important;
    
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    
    width: auto !important;
    min-height: auto !important;
    padding: 0.6rem 1.1rem 0.6rem 0.6rem !important;
    
    text-decoration: none !important;
    border-radius: 50px !important;
    
    /* Background Hijau Solid WhatsApp Mewah */
    background: #25D366 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

/* Hilangkan overlay kabur yang bikin kusam */
.nx-wa-btn::before {
    display: none !important;
}

/* ==================================================
   WHATSAPP ICON (LINGKARAN PUTIH + IKON HIJAU TEGAS)
================================================== */

.nx-wa-btn-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    width: 2.25rem !important;
    height: 2.25rem !important;
    flex: 0 0 2.25rem !important;
    
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.nx-wa-btn-icon svg {
    display: block !important;
    width: 1.35rem !important;
    height: 1.35rem !important;
    fill: #25D366 !important;
    color: #25D366 !important;
}

.nx-wa-btn-icon svg path {
    fill: #25D366 !important;
}

/* Matikan pulse besar yang bikin berbayang aneh */
.nx-wa-btn-icon::after {
    display: none !important;
}

/* ==================================================
   TEXT CONTENT
================================================== */

.nx-wa-btn-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    line-height: 1.15 !important;
}

.nx-wa-btn-label {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
    text-shadow: none !important;
}

.nx-wa-btn-sub {
    font-size: 0.65rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hilangkan tombol panah kanan agar pill tidak terlalu panjang */
.nx-wa-btn-arrow {
    display: none !important;
}

/* ==================================================
   HOVER & ACTIVE
================================================== */

@media (hover: hover) {
    .nx-wa-btn:hover {
        transform: translateY(-3px) scale(1.02) !important;
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 6px 12px rgba(0, 0, 0, 0.3) !important;
        background: #20ba5a !important;
    }
}

.nx-wa-btn:active {
    transform: scale(0.96) !important;
}

/* ==================================================
   MOBILE TUNING
================================================== */

@media (max-width: 480px) {
    .nx-wa-btn {
        right: 1rem !important;
        bottom: 1.25rem !important;
        padding: 0.5rem 0.9rem 0.5rem 0.5rem !important;
    }
    
    .nx-wa-btn-icon {
        width: 2rem !important;
        height: 2rem !important;
        flex: 0 0 2rem !important;
    }
    
    .nx-wa-btn-icon svg {
        width: 1.15rem !important;
        height: 1.15rem !important;
    }

    .nx-wa-btn-label {
        font-size: 0.8rem !important;
    }

    .nx-wa-btn-sub {
        font-size: 0.6rem !important;
    }
}