/* Footer Frame */
.footer-frame {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

/* Footer Base Styles */
footer {
    background: #fff !important;
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border-top: 3px solid #333333;
}

a {
    color: #555555;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a:hover {
    color: #000000;
}

/* Logo Styles */
.footer-logo {
    width: 300px;
    max-width: 100%;
    transition: transform 0.3s ease;
    margin-bottom: 35px;
    padding-right: 50px;
    margin-top: 5px;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Social Icons Styles */
.social-platforms {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-left: 0;
}

.social-platform {
    display: inline-block;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.social-platform:last-child {
    margin-right: 0;
}

.social-platform img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-platform:hover img {
    transform: translateY(-5px) scale(1.1);
}

/* Section Titles */
.section-title {
    color: #333333;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 10px;
    font-size: 18px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
    list-style: none;
    padding-left: 0;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #000000;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    white-space: nowrap;
}

.footer-contact i {
    color: #333333;
    width: 20px;
    text-align: center;
}

/* About Text */
.about-text {
    line-height: 1.6;
    font-size: 15px;
    color: #555555;
}

/* Divider */
.divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0px 0;
}

/* Copyright Section */
.footer-copyright {
    background: rgba(0, 0, 0, 0.03);
    padding: 0px 0;
}

.copyright-text {
    color: #000000;
    font-size: 14px;
}

/* Legal Links */
.footer-legal-link {
    color: #000000;
    font-size: 14px;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #000000;
    text-decoration: underline !important;
}

/* WhatsApp Button */
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Modern Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(20px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

/* .scroll-to-top:hover {
    background-color: rgba(183, 183, 183, 0.9);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
} */

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-frame {
        margin: 10px;
        border-radius: 5px;
        margin-top: 20px;
    }
    
    .footer-logo {
        width: 220px;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .social-platform {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .col-md-3 {
        margin-bottom: 30px;
        text-align: left !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .footer-links,
    .footer-contact {
        text-align: left;
    }
    
    .footer-contact li {
        white-space: normal;
    }
    
    .footer-contact i {
        margin-right: 5px;
    }
    
    .section-title {
        text-align: left;
    }
    
    .footer-legal-link {
        display: block;
        margin: 5px 0;
    }
    
    /* Mobile Scroll to Top Button */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}