#contact-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#contact-text {
    background: white;
    border: 2px solid grey;
    color: black;
    padding: 8px 15px;
    border-radius: 15px;
    margin-right: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}

#contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: bounce 1.5s infinite;
    transition: transform 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#chat-box {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 15px;
    animation: fadeIn 0.5s ease-in-out;
    font-size: 16px;
    font-family: sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#close-btn {
    width: 24px;
    height: 24px;
    background: white;
    border: 1px solid grey;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    top: 10px;
    right: 10px;
    margin-left: auto;
}

#close-btn:hover {
    transform: rotate(360deg);
    background: grey;
    border: 1px solid dark grey;
    color: white;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;		
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
	justify-content: center;
}

.contact-button:hover {
    transform: scale(1.08);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    text-align: center;
}

.call-btn {
    background: linear-gradient(135deg, #34b7f1, #007b9a);
    color: white;
    border: none;
    text-align: center;
}

#phone-message {
    display: none;
    background-color: #ffcc00;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.contact-button i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-btn i {
    font-size: 24px;
}
