/* Floating Menu */
#floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#main-floating-btn {
    width: 55px;
    height: 55px;
    background: #25d366;
    color: white;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    position: relative;
}

#main-floating-btn:hover {
    transform: scale(1.1);
}

#floating-icon {
    display: inline-block;
    font-size: 40px;
    transition: transform 0.3s ease;
    color: white;
    font-weight: bold;
    line-height: 55px;
    transform-origin: center;

}

#main-floating-btn.active #floating-icon {
    transform: rotate(135deg);
}


/* Floating Actions (Initially Hidden) */
.floating-actions {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    flex-direction: column;
    gap: 10px;
}
/*#floating-menu:hover .floating-actions {*/
/*    display: flex;*/
/*}*/

#toggle-menu:checked ~ .floating-actions {
    display: flex;
}

/* Floating Buttons */
.floating-button {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    text-align: center;
    font-weight: bold;
    display: block;
    text-decoration: none;
}
.floating-button:hover {
    transform: scale(1.1);
}
/*.whatsapp-btn {*/
/*    background: #25D366;*/
/*}*/

/*Whatsapp popup*/
/* Floating Button */
#whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
#whatsapp-button:hover {
    transform: scale(1.1);
}


#contact-btn{
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 9999;
    background: #442e1b;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

/* Popup Box */
#whatsapp-popup {
    position: fixed;
    bottom: 6%;
    right: 3%;
    width: 400px;
    z-index: 9999;
    background: #dbd4cd;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}
.whatsapp-header {
    background: #128c7e;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.whatsapp-header-img-content{
    display: flex;
}
.whatsapp-header-content{
    display: block;
    margin-left: 10px;
}
.whatsapp-header-content h4{
    font-family: roboto;
    font-size: 18px;
    color: white;
    font-weight: 600;
}
.whatsapp-header-content p{
    font-family: roboto;
    font-size: 16px;
    color: white;
    font-weight: 400;
    margin-top: -20px;
}
.whatsapp-header span {
    cursor: pointer;
}
.whatsapp-body {
    padding: 10px 15px 0 15px;

}
.whatsapp-body .day{
    text-align: center;
	font-family: roboto;
    font-size: 14px;
}
.body-text{
    background: white;
    padding: 5px 10px;
	margin-top: -10px;
    margin-bottom: 20px;
    border-radius: 8px; 
	width: 75%;
}
.txt-1{
    color: #9f9f9f;
    font-family: roboto;
    font-size: 14px;
    font-weight: 600;
}
.txt-2{
    color: #333333;
    font-family: roboto;
    font-size: 15px;
    font-weight: 600;
    margin-top: -30px;
}
	
.body-text-time{
	margin-top: -30px;
	}
#current-time {
	color: #9f9f9f;
    font-family: roboto;
    font-size: 13px;
    font-weight: 500;
	text-align: right;
}
	
.btn-class{
    background: white;
    padding: 20px 20px 10px 20px;
    justify-items: stretch;
	border-radius: 0px 0px 8px 8px;
}

.btn-class button {
    background: #128c7e;
    color: white;
    border: none;
    border-radius: 25px;
/* 	padding: 15px; */
    cursor: pointer;
    justify-content: center;
    width: 100%;
}
.btn-class p{
    margin-top: 5px;
    font-size: 15px;
    font-family: roboto;
	text-align: center;
	color: #9f9f9f;
}
/*.btn-class button:hover {*/
/*    background: #1da851;*/
/*}*/

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}



/* Contact Popup */
#contact-popup {
    position: fixed;
    bottom: 6%;
    right: 3%;
    width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    z-index: 9999;
}

@media screen and (max-width: 480px){
    #whatsapp-popup {
    position: fixed;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%); 
    width: 360px;
    }
    
   #contact-popup {
    position: fixed;
    /*top: 30%;*/
    left: 50%;
    transform: translate(-50%);
    width: 360px;
   }
}


/* Contact Form Header */
.contact-header {
    background: #442e1b;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.contact-header-content{
    align-items: center;
}

.contact-header-content h3 {
    margin: 0;
    text-align: center;
    font-family: roboto;
    font-size: 25px;
    color: white;
    font-weight: 600;
}

.contact-header-content p{
    margin: 0;
    margin-top: -5px;
    font-family: roboto;
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-header-cross span {
    cursor: pointer;
    font-size: 20px;
    color: white;
}

/* Contact Form Body */
.contact-body {
    padding: 15px;
    text-align: center;
    background: white;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.contact-body p{
    margin-top: -15px;
    font-size: 15px;
    font-family: roboto;
	text-align: center;
	color: #9f9f9f;
}

#contact-form button:hover {
    background: #8B4513;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
