/* ===================================
   Site Footer
   =================================== */

.site-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disclaimer Text */
.footer-disclaimer {
    margin-bottom: 50px;
}

.footer-disclaimer p {
       font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    text-align: justify;
}

/* Partner Logos */
.footer-logos {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-logo-item {
    flex-shrink: 0;
}

.footer-logo-item img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder logos for testing */
.placeholder-logo {
    height: 50px;
    width: 120px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #999999;
    border-radius: 4px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
   font-size: 18px;
    color: #000;
    margin: 0;
}


/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1024px) {
    .footer-logos-wrapper {
        gap: 40px;
    }
    
    .footer-logo-item img {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
    }
    
    .footer-disclaimer {
        margin-bottom: 40px;
    }
    
    .footer-disclaimer p {
        font-size: 0.625rem;
        text-align: left;
    }
    
    .footer-logos {
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .footer-logos-wrapper {
        gap: 30px;
    }
    
    .footer-logo-item img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-disclaimer p {
        font-size: 0.5625rem;
    }
    
    .footer-logos-wrapper {
        gap: 20px;
    }
    
    .footer-logo-item img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-copyright p {
        font-size: 0.8125rem;
    }
}
