.custom-main-footer {
    background: #161616;
    color: #D7DAD1;
    padding: 40px 0 20px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.custom-footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-top {
    display: grid;
    grid-template-columns: 8fr 7fr 5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left .footer-logo .custom-footer-logo-img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(0.9) sepia(0.1) saturate(150%);
}

.footer-left .footer-tagline {
    font-family: 'clearfacestd', 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 400;
    color: #D7DAD1;
    margin-top: 15px;
    line-height: 1.4;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: 'moulin', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
    color: #D7DAD1;
    text-transform: uppercase;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-right h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #D7DAD1;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-right .footer-contact-info {
    margin-bottom: 0px;
}

.footer-right .footer-contact-info a {
    color: #D7DAD1;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-right .footer-address {
    margin-bottom: 30px;
}

.footer-right .footer-address a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    text-decoration: none;
    color: #D7DAD1 !important;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    text-decoration: underline;
    color: #ffffff !important;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.footer-social-icons a {
    color: #D7DAD1;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: none;
    padding-top: 30px;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #D7DAD1;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
    .custom-footer-container {
        padding: 0 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        text-align: left;
    }
    
    .footer-left .footer-logo {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .custom-main-footer {
        padding: 30px 0 15px 0;
    }
    
    .custom-footer-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-left .footer-logo {
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-left .footer-logo .custom-footer-logo-img {
        max-height: 60px;
    }
    
    .footer-nav ul {
        align-items: flex-start;
    }
    
    .footer-nav a {
        font-size: 24px;
    }
    
    .footer-right .footer-contact-info a {
        font-size: 14px;
    }
    
    .footer-right .footer-address a {
        font-size: 14px;
    }

    .footer-social-icons {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .footer-bottom {
        text-align: left;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .custom-main-footer {
        padding: 30px 0 15px 0;
    }
    
    .custom-footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        gap: 30px;
    }
    
    .footer-left .footer-logo .custom-footer-logo-img {
        max-height: 50px;
    }
    
    .footer-nav a {
        font-size: 20px;
    }
    
    .footer-right h4 {
        font-size: 13px;
    }
    
    .footer-right .footer-contact-info a,
    .footer-right .footer-address a {
        font-size: 12px;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .footer-social-icons a {
        font-size: 18px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}