/* ===================================
   Footer Styles
   =================================== */
.footer-new {
    background: #0F172A;
    padding: 60px 0 0;
}

.footer-new__main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-new__brand .logo-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1;
    font-weight: 700;
    display: inline-block;
}

.footer-new__brand p {
    color: rgba(255,255,255,0.6);
    margin: 20px 0;
    font-size: 0.938rem;
    line-height: 1.7;
}

.footer-new__brand .navbar__logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.footer-new__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-new__social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-new__social a:hover {
    background: #4F46E5;
    transform: translateY(-3px);
}

.footer-new__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-col ul a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.contact-list {
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: #4F46E5;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.contact-list span,
.contact-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.contact-list a:hover {
    color: #FFFFFF;
}

.footer-new__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-new__bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-new__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-new__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-new__legal a:hover {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-new__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-new__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-new {
        padding: 40px 0 0;
    }
    
    .footer-new__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-new__social {
        justify-content: center;
    }
    
    .footer-new__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-new__legal {
        justify-content: center;
    }
}
