/* WhatsApp Banner */
.whatsapp-banner {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 30px 0;
    margin: 40px 0;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.whatsapp-icon-large {
    font-size: 64px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.whatsapp-text {
    flex: 1;
    color: white;
}

.whatsapp-text h3 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.whatsapp-text p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.btn-whatsapp-large {
    background: white;
    color: #25D366;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.btn-whatsapp-large i {
    font-size: 24px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .whatsapp-icon-large {
        font-size: 48px;
    }

    .whatsapp-text h3 {
        font-size: 20px;
    }

    .whatsapp-text p {
        font-size: 14px;
    }

    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 16px;
    }
}