/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 80px;
    right: 80px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin: 0;
    line-height: 80px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 30px;
    }
    
    .whatsapp-float i {
        line-height: 60px;
    }
}

/* Footer Background Color Override */
.footer {
    background: #4255ad !important;
}

.footer.footer-two {
    background: #4255ad !important;
}

.footer.footer-three {
    background: #4255ad !important;
}

/* Footer Text Colors - White */
.footer .footer-text-p p,
.footer .footer-item-text-link ul li a,
.footer .footer-item-text-link p,
.footer .footer-item-text-link a,
.footer .footer-icon .text h5 {
    color: #ffffff !important;
}

/* Footer headings */
.footer .footer-item-text h3 {
    color: #ffffff !important;
}

/* Footer links hover effect */
.footer .footer-item-text-link ul li a:hover {
    color: #f0f0f0 !important;
}

/* Footer social icons - ensure proper fill color */
.footer .footer-icon .footer-icon-item .icon a span svg path {
    fill: #ffffff;
}

/* Footer Contact Form Styles */
.footer-contact-form {
    margin-top: 30px;
}

.footer-contact-form h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.footer-contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.footer-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.footer-contact-form .thm-btn-two {
    width: 100%;
    margin-top: 10px;
}
