/* Reset & Base */
.wa-floating {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.wa-position-right {
    right: 30px;
}

.wa-position-left {
    left: 30px;
}

.wa-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ===== HELP TEXT - TOOLTIP ===== */
.wa-help-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
    z-index: 3;
    cursor: pointer;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    animation: pulseGlow 1.5s ease-in-out infinite;
    background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
    background-size: 200% 200%;
}

@keyframes pulseGlow {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 30px rgba(37,211,102,0.7);
        background-position: 100% 50%;
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 4px 20px rgba(37,211,102,0.35);
        background-position: 0% 50%;
    }
}

/* POSISI KANAN BAWAH */
.wa-position-right .wa-help-text {
    right: 85px;
    flex-direction: row;
}

.wa-position-right .wa-help-text span {
    order: 1;
}

.wa-position-right .wa-help-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid white;
    border-right: none;
    order: 2;
    margin-left: 8px;
}

/* POSISI KIRI BAWAH - Panah di kiri teks (mengarah ke kiri/icon) */
.wa-position-left .wa-help-text {
    left: 85px;
    right: auto;
    flex-direction: row;
}

.wa-position-left .wa-help-text span {
    order: 2;
}

.wa-position-left .wa-help-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid white;
    border-left: none;
    order: 1;
    margin-right: 8px;
}

/* Tooltip hilang saat hover di button WA */
.wa-button-modern:hover + .wa-help-text,
.wa-button-modern:hover ~ .wa-help-text,
.wa-container:hover .wa-help-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== HOVER POPUP NAME CS ===== */
.wa-item-modern {
    position: relative;
}

.wa-item-modern::before {
    content: attr(data-name);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    margin-right: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.wa-position-left .wa-item-modern::before {
    right: auto;
    left: 100%;
    margin-left: 10px;
    margin-right: 0;
}

.wa-item-modern:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ===== BUTTON MODERN ===== */
.wa-button-modern {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
    z-index: 10;
}

/* Area jembatan dari icon ke list CS */
.wa-button-modern::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: -30px;
    height: 40px;
    background: transparent;
    pointer-events: auto;
    z-index: 5;
}

.wa-button-modern img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.wa-button-modern:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

/* Ripple & Pulse */
.wa-ripple {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.4) 0%, rgba(37,211,102,0) 70%);
    top: 0;
    left: 0;
    animation: ripple 2s infinite;
    z-index: 1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.wa-pulse-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    top: 0;
    left: 0;
    animation: pulse-ring 1.8s ease-out infinite;
    z-index: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Notification Badge */
.wa-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255,71,87,0.4);
    z-index: 3;
}

/* ===== LIST CS ===== */
.wa-list-modern {
    position: absolute;
    bottom: 90px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 5;
    pointer-events: none;
    /* Perluas area agar mudah dijangkau */
    padding: 15px 20px;
    margin: -15px -20px;
}

.wa-position-left .wa-list-modern {
    right: auto;
    left: 0;
}

/* Munculkan CS saat hover di button ATAU di list CS */
.wa-button-modern:hover .wa-list-modern,
.wa-list-modern:hover,
.wa-container:hover .wa-list-modern {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
}

/* Item CS */
.wa-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
    border: 1px solid rgba(37,211,102,0.15);
    min-width: 260px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.98);
}

.wa-item-modern:hover {
    transform: translateX(-8px);
    background: white;
    box-shadow: 0 12px 30px rgba(37,211,102,0.2);
    border-color: #25D366;
}

.wa-position-left .wa-item-modern:hover {
    transform: translateX(8px);
}

/* Avatar */
.wa-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.wa-avatar-wrapper img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25D366;
    background: #f0f0f0;
    transition: transform 0.3s ease;
}

.wa-item-modern:hover .wa-avatar-wrapper img {
    transform: scale(1.05);
}

.wa-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-online 1.5s infinite;
}

@keyframes pulse-online {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Info */
.wa-info {
    flex: 1;
}

.wa-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #075E54;
}

.wa-info span {
    font-size: 11px;
    color: #888;
    transition: color 0.3s ease;
}

.wa-item-modern:hover .wa-info span {
    color: #25D366;
}

.wa-chat-icon {
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.wa-item-modern:hover .wa-chat-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ANIMASI SLIDE ===== */
.wa-animation-slide .wa-list-modern {
    transform: translateX(30px);
}

.wa-animation-slide .wa-button-modern:hover .wa-list-modern,
.wa-animation-slide .wa-list-modern:hover,
.wa-animation-slide .wa-container:hover .wa-list-modern {
    transform: translateX(0);
}

.wa-animation-slide .wa-item-modern {
    transform: translateX(30px);
    transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.wa-animation-slide .wa-button-modern:hover .wa-item-modern,
.wa-animation-slide .wa-list-modern:hover .wa-item-modern,
.wa-animation-slide .wa-container:hover .wa-item-modern {
    transform: translateX(0);
}

.wa-animation-slide .wa-item-modern:nth-child(1) { transition-delay: 0.03s; }
.wa-animation-slide .wa-item-modern:nth-child(2) { transition-delay: 0.08s; }
.wa-animation-slide .wa-item-modern:nth-child(3) { transition-delay: 0.13s; }
.wa-animation-slide .wa-item-modern:nth-child(4) { transition-delay: 0.18s; }
.wa-animation-slide .wa-item-modern:nth-child(5) { transition-delay: 0.23s; }

/* ===== ANIMASI BOUNCE ===== */
.wa-animation-bounce .wa-list-modern {
    transform: scale(0.95);
}

.wa-animation-bounce .wa-button-modern:hover .wa-list-modern,
.wa-animation-bounce .wa-list-modern:hover,
.wa-animation-bounce .wa-container:hover .wa-list-modern {
    transform: scale(1);
}

.wa-animation-bounce .wa-item-modern {
    animation: bounceIn 0.5s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
    opacity: 0;
    transform-origin: right center;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3) translateX(20px); }
    50% { opacity: 1; transform: scale(1.03) translateX(-3px); }
    70% { transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1) translateX(0); }
}

.wa-animation-bounce .wa-item-modern:nth-child(1) { animation-delay: 0.05s; }
.wa-animation-bounce .wa-item-modern:nth-child(2) { animation-delay: 0.1s; }
.wa-animation-bounce .wa-item-modern:nth-child(3) { animation-delay: 0.15s; }
.wa-animation-bounce .wa-item-modern:nth-child(4) { animation-delay: 0.2s; }
.wa-animation-bounce .wa-item-modern:nth-child(5) { animation-delay: 0.25s; }

/* ===== ANIMASI FADE ===== */
.wa-animation-fade .wa-list-modern {
    background: transparent;
    backdrop-filter: blur(0px);
    border-radius: 24px;
    padding: 8px;
}

.wa-animation-fade .wa-button-modern:hover .wa-list-modern,
.wa-animation-fade .wa-list-modern:hover,
.wa-animation-fade .wa-container:hover .wa-list-modern {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.wa-animation-fade .wa-item-modern {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.wa-animation-fade .wa-button-modern:hover .wa-item-modern,
.wa-animation-fade .wa-list-modern:hover .wa-item-modern,
.wa-animation-fade .wa-container:hover .wa-item-modern {
    opacity: 1;
    transform: translateY(0);
}

.wa-animation-fade .wa-item-modern:nth-child(1) { transition-delay: 0.04s; }
.wa-animation-fade .wa-item-modern:nth-child(2) { transition-delay: 0.09s; }
.wa-animation-fade .wa-item-modern:nth-child(3) { transition-delay: 0.14s; }
.wa-animation-fade .wa-item-modern:nth-child(4) { transition-delay: 0.19s; }
.wa-animation-fade .wa-item-modern:nth-child(5) { transition-delay: 0.24s; }

/* ===== ANIMASI ZOOM ===== */
.wa-animation-zoom .wa-list-modern {
    transform: scale(0.7);
    opacity: 0;
}

.wa-animation-zoom .wa-button-modern:hover .wa-list-modern,
.wa-animation-zoom .wa-list-modern:hover,
.wa-animation-zoom .wa-container:hover .wa-list-modern {
    transform: scale(1);
    opacity: 1;
}

.wa-animation-zoom .wa-item-modern {
    transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
}

.wa-animation-zoom .wa-button-modern:hover .wa-item-modern,
.wa-animation-zoom .wa-list-modern:hover .wa-item-modern,
.wa-animation-zoom .wa-container:hover .wa-item-modern {
    animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.wa-animation-zoom .wa-item-modern:nth-child(1) { animation-delay: 0.02s; }
.wa-animation-zoom .wa-item-modern:nth-child(2) { animation-delay: 0.07s; }
.wa-animation-zoom .wa-item-modern:nth-child(3) { animation-delay: 0.12s; }
.wa-animation-zoom .wa-item-modern:nth-child(4) { animation-delay: 0.17s; }
.wa-animation-zoom .wa-item-modern:nth-child(5) { animation-delay: 0.22s; }

/* ===== ANIMASI ROTATE ===== */
.wa-animation-rotate .wa-list-modern {
    perspective: 500px;
}

.wa-animation-rotate .wa-button-modern:hover .wa-list-modern,
.wa-animation-rotate .wa-list-modern:hover,
.wa-animation-rotate .wa-container:hover .wa-list-modern {
    animation: rotateIn 0.5s ease forwards;
}

@keyframes rotateIn {
    from { transform: rotateY(-90deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
}

.wa-animation-rotate .wa-item-modern {
    transform-origin: right center;
    transition: all 0.3s ease;
}

.wa-animation-rotate .wa-button-modern:hover .wa-item-modern,
.wa-animation-rotate .wa-list-modern:hover .wa-item-modern,
.wa-animation-rotate .wa-container:hover .wa-item-modern {
    animation: rotate3d 0.4s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
}

@keyframes rotate3d {
    from { transform: rotateX(-90deg); opacity: 0; }
    to { transform: rotateX(0); opacity: 1; }
}

.wa-animation-rotate .wa-item-modern:nth-child(1) { animation-delay: 0.03s; }
.wa-animation-rotate .wa-item-modern:nth-child(2) { animation-delay: 0.08s; }
.wa-animation-rotate .wa-item-modern:nth-child(3) { animation-delay: 0.13s; }
.wa-animation-rotate .wa-item-modern:nth-child(4) { animation-delay: 0.18s; }
.wa-animation-rotate .wa-item-modern:nth-child(5) { animation-delay: 0.23s; }

/* ===== ANIMASI FLIP ===== */
.wa-animation-flip .wa-list-modern {
    transform-style: preserve-3d;
}

.wa-animation-flip .wa-button-modern:hover .wa-list-modern,
.wa-animation-flip .wa-list-modern:hover,
.wa-animation-flip .wa-container:hover .wa-list-modern {
    animation: flipIn 0.5s ease forwards;
}

@keyframes flipIn {
    from { transform: rotateX(-90deg); opacity: 0; }
    to { transform: rotateX(0); opacity: 1; }
}

.wa-animation-flip .wa-item-modern {
    transition: all 0.3s ease;
}

.wa-animation-flip .wa-button-modern:hover .wa-item-modern,
.wa-animation-flip .wa-list-modern:hover .wa-item-modern,
.wa-animation-flip .wa-container:hover .wa-item-modern {
    animation: flipItem 0.4s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
}

@keyframes flipItem {
    from { transform: rotateY(90deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
}

.wa-animation-flip .wa-item-modern:nth-child(1) { animation-delay: 0.04s; }
.wa-animation-flip .wa-item-modern:nth-child(2) { animation-delay: 0.09s; }
.wa-animation-flip .wa-item-modern:nth-child(3) { animation-delay: 0.14s; }
.wa-animation-flip .wa-item-modern:nth-child(4) { animation-delay: 0.19s; }
.wa-animation-flip .wa-item-modern:nth-child(5) { animation-delay: 0.24s; }

/* ===== ANIMASI ELASTIC ===== */
.wa-animation-elastic .wa-list-modern {
    transform: scale(0.9);
}

.wa-animation-elastic .wa-button-modern:hover .wa-list-modern,
.wa-animation-elastic .wa-list-modern:hover,
.wa-animation-elastic .wa-container:hover .wa-list-modern {
    animation: elasticIn 0.6s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
}

@keyframes elasticIn {
    0% { transform: scale(0.3); opacity: 0; }
    40% { transform: scale(1.05); }
    60% { transform: scale(0.95); }
    80% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

.wa-animation-elastic .wa-item-modern {
    transition: all 0.3s ease;
}

.wa-animation-elastic .wa-button-modern:hover .wa-item-modern,
.wa-animation-elastic .wa-list-modern:hover .wa-item-modern,
.wa-animation-elastic .wa-container:hover .wa-item-modern {
    animation: elasticItem 0.5s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
}

@keyframes elasticItem {
    0% { transform: translateX(50px) scale(0.5); opacity: 0; }
    60% { transform: translateX(-5px) scale(1.02); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

.wa-animation-elastic .wa-item-modern:nth-child(1) { animation-delay: 0.02s; }
.wa-animation-elastic .wa-item-modern:nth-child(2) { animation-delay: 0.07s; }
.wa-animation-elastic .wa-item-modern:nth-child(3) { animation-delay: 0.12s; }
.wa-animation-elastic .wa-item-modern:nth-child(4) { animation-delay: 0.17s; }
.wa-animation-elastic .wa-item-modern:nth-child(5) { animation-delay: 0.22s; }

/* ===== ANIMASI SWING ===== */
.wa-animation-swing .wa-list-modern {
    transform-origin: bottom center;
}

.wa-animation-swing .wa-button-modern:hover .wa-list-modern,
.wa-animation-swing .wa-list-modern:hover,
.wa-animation-swing .wa-container:hover .wa-list-modern {
    animation: swingIn 0.5s ease forwards;
}

@keyframes swingIn {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0); opacity: 1; }
}

.wa-animation-swing .wa-item-modern {
    transition: all 0.3s ease;
}

.wa-animation-swing .wa-button-modern:hover .wa-item-modern,
.wa-animation-swing .wa-list-modern:hover .wa-item-modern,
.wa-animation-swing .wa-container:hover .wa-item-modern {
    animation: swingItem 0.4s ease forwards;
}

@keyframes swingItem {
    from { transform: translateX(30px) rotate(20deg); opacity: 0; }
    to { transform: translateX(0) rotate(0); opacity: 1; }
}

.wa-animation-swing .wa-item-modern:nth-child(1) { animation-delay: 0.03s; }
.wa-animation-swing .wa-item-modern:nth-child(2) { animation-delay: 0.08s; }
.wa-animation-swing .wa-item-modern:nth-child(3) { animation-delay: 0.13s; }
.wa-animation-swing .wa-item-modern:nth-child(4) { animation-delay: 0.18s; }
.wa-animation-swing .wa-item-modern:nth-child(5) { animation-delay: 0.23s; }

/* ===== ANIMASI WOBBLE ===== */
.wa-animation-wobble .wa-list-modern {
    transform: scale(0.95);
}

.wa-animation-wobble .wa-button-modern:hover .wa-list-modern,
.wa-animation-wobble .wa-list-modern:hover,
.wa-animation-wobble .wa-container:hover .wa-list-modern {
    animation: wobbleIn 0.5s ease forwards;
}

@keyframes wobbleIn {
    0% { transform: translateX(0%) scale(0.8); opacity: 0; }
    15% { transform: translateX(-25%) scale(0.9); }
    30% { transform: translateX(20%) scale(0.95); }
    45% { transform: translateX(-15%) scale(0.98); }
    60% { transform: translateX(10%) scale(0.99); }
    75% { transform: translateX(-5%) scale(1); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

.wa-animation-wobble .wa-item-modern {
    transition: all 0.3s ease;
}

.wa-animation-wobble .wa-button-modern:hover .wa-item-modern,
.wa-animation-wobble .wa-list-modern:hover .wa-item-modern,
.wa-animation-wobble .wa-container:hover .wa-item-modern {
    animation: wobbleItem 0.4s ease forwards;
}

@keyframes wobbleItem {
    from { transform: translateX(20px) rotate(10deg); opacity: 0; }
    to { transform: translateX(0) rotate(0); opacity: 1; }
}

.wa-animation-wobble .wa-item-modern:nth-child(1) { animation-delay: 0.04s; }
.wa-animation-wobble .wa-item-modern:nth-child(2) { animation-delay: 0.09s; }
.wa-animation-wobble .wa-item-modern:nth-child(3) { animation-delay: 0.14s; }
.wa-animation-wobble .wa-item-modern:nth-child(4) { animation-delay: 0.19s; }
.wa-animation-wobble .wa-item-modern:nth-child(5) { animation-delay: 0.24s; }

/* ===== ANIMASI PULSE ===== */
.wa-animation-pulse .wa-list-modern {
    transform: scale(0.98);
}

.wa-animation-pulse .wa-button-modern:hover .wa-list-modern,
.wa-animation-pulse .wa-list-modern:hover,
.wa-animation-pulse .wa-container:hover .wa-list-modern {
    animation: pulseIn 0.4s ease forwards;
}

@keyframes pulseIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); opacity: 1; }
}

.wa-animation-pulse .wa-item-modern {
    transition: all 0.3s ease;
}

.wa-animation-pulse .wa-button-modern:hover .wa-item-modern,
.wa-animation-pulse .wa-list-modern:hover .wa-item-modern,
.wa-animation-pulse .wa-container:hover .wa-item-modern {
    animation: pulseItem 0.3s cubic-bezier(0.68,-0.55,0.265,1.55) forwards;
}

@keyframes pulseItem {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.wa-animation-pulse .wa-item-modern:nth-child(1) { animation-delay: 0.02s; }
.wa-animation-pulse .wa-item-modern:nth-child(2) { animation-delay: 0.06s; }
.wa-animation-pulse .wa-item-modern:nth-child(3) { animation-delay: 0.1s; }
.wa-animation-pulse .wa-item-modern:nth-child(4) { animation-delay: 0.14s; }
.wa-animation-pulse .wa-item-modern:nth-child(5) { animation-delay: 0.18s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .wa-floating {
        bottom: 20px;
    }
    
    .wa-position-right {
        right: 20px;
    }
    
    .wa-position-left {
        left: 20px;
    }
    
    .wa-position-right .wa-help-text {
        right: 70px;
    }
    
    .wa-position-left .wa-help-text {
        left: 70px;
    }
    
    .wa-button-modern img {
        width: 55px;
        height: 55px;
    }
    
    .wa-ripple, .wa-pulse-ring {
        width: 55px;
        height: 55px;
    }
    
    .wa-help-text {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .wa-list-modern {
        position: fixed;
        bottom: 80px;
        right: 15px;
        left: auto;
        max-width: calc(100vw - 30px);
    }
    
    .wa-position-left .wa-list-modern {
        left: 15px;
        right: auto;
    }
    
    .wa-item-modern {
        min-width: 227px;
        padding: 8px 14px;
    }
    
    .wa-avatar-wrapper img {
        width: 40px;
        height: 40px;
    }
    
    .wa-info strong {
        font-size: 13px;
    }
    
    .wa-info span {
        font-size: 10px;
    }
    
    .wa-chat-icon {
        font-size: 18px;
    }
}

/* Entry Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-floating {
    animation: fadeInUp 0.5s ease-out;
}