/* Footer Styles */
.footer-section {
    background-color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Lato', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 30px;
}

.brand-column {
    flex: 1.5;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-address {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-address p {
    margin: 0 0 5px;
}

.footer-title {
    color: #4B4E53;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4B4E53;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-column {
        flex: 1 0 50%;
    }
    
    .brand-column {
        flex: 1 0 100%;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 1 0 100%;
        padding-right: 0;
    }
    
    .footer-container {
        flex-direction: column;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}