/* ======= Floating Chat Button ======= */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 24px;
    padding: 15p;
    border-radius: 50%;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.chat-button:hover {
    background-color: #1da851;
    transform: scale(1.1);
}

/* Responsive buat HP & Tablet */
@media (max-width: 768px) {
    .chat-button {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        font-size: 20px;
    }
}

/* ======= Styling Modal ======= */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background: #25d366;
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    text-align: center;
}

.modal-body a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.modal-body a i {
    margin-right: 10px;
}

.modal-body a:hover {
    transform: scale(1.05);
}

.whatsapp {
    background-color: #25d366;
}

.telegram {
    background-color: #0088cc;
}

.email {
    background-color: #333;
}
