/* ===== WhatsApp Canlı Destek ===== */
.wa-live-card {
    background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.30);
    position: relative;
    overflow: hidden;
}

.wa-live-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    right: -40px;
    top: -50px;
    pointer-events: none;
}

.wa-live-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    right: 80px;
    bottom: -40px;
    pointer-events: none;
}

.wa-live-card-info {
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 1;
}

.wa-live-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50%       { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.wa-live-text h4 {
    margin: 0 0 4px 0;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
}

.wa-live-text p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
}

.wa-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.wa-live-badge span {
    width: 7px;
    height: 7px;
    background: #7fff87;
    border-radius: 50%;
    display: inline-block;
    animation: wa-blink 1.2s infinite;
}

@keyframes wa-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #075e54;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.wa-btn:hover {
    background: #f0fff4;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    color: #075e54;
    text-decoration: none;
}

.wa-btn i {
    font-size: 1.2rem;
    color: #25d366;
}

@media (max-width: 600px) {
    .wa-live-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .wa-btn {
        width: 100%;
        justify-content: center;
    }
}
