#contact-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}
#contact-button:hover {
    background-color: #1ebd5a;
}
#chat-card {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 290px;
    min-width: 330px;
    max-width: 420px;
    background: #ece5dd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.chat-card-head { 
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 12px 25px 12px 25px;
    background-color: #075e54;
    line-height: 1.1;
    z-index: 1;
    border-radius: 10px 10px 0 0;
}
.chat-card-body { 
    padding: 15px;
    max-height: 24vh;
    min-height: 25vh;
}
.chat-card-body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/wa/wa_bg.png');
    opacity: 0.07;
    z-index: -1;
}
.message-chat-card {
    background: #dcf8c6;
    padding:6px 8px 8px 9px;
    border-radius: 10px;
    max-width: 100%;
    z-index : 1;
    transition: opacity 0.5s;
    margin: 8px 5px;
    
}
.contact-options button {
    background-color: #25d366;
    border: none;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.contact-options button:hover {
    background-color: #1ebd5a;
}

.message-whatsapp-hidden {
    display: none;
}
.whatsapp-card-close { 
    position:absolute;
    top:0; right:0;
    cursor:pointer;
    padding:5px;
    margin:4px;
    border-radius:50%;
    background-color: unset !important;
    z-index: 9999;
    line-height: 1;
}
.whtsapp-card-profileImg-div { 
    border-radius:50%;
    height:50px;
    width:50px;
    margin-right:9px;
}
.whtsapp-card-profileImg { 
    display:inline-block;
    border-radius:50%;
    height:50px;
    width:50px;
}
.whtsapp-card-profile-name { 
    color: #ffffff;
    font-size: 30px;
    font-weight: 500
}
.chat-card-footer { 
    margin-bottom: 0;
    text-align:center;
    padding: 11px 25px 2px 25px;
    background-color:#ffffff;
    border-radius: 0 0 10px 10px;
}
.chat-card-footer a { 
    text-decoration: none;
}
.btn-whatsapp-chat-footer { 
    display:flex;
    justify-content:center;
    align-items:center;
    padding:5px;
    background-color:#25D366;
    border-radius:25px;
    cursor: pointer;
}
.text-whatsapp-chat-footer { 
    padding:1px 0px;
    color:#ffffff;
    border-radius:10px;
    margin:0 10px;
    order:1;
}
.card-whatsapp-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s;
}

.card-whatsapp-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
}