.site-footer {
    background-color: rgba(0, 112, 240, 0.1);
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    color: rgb(192, 0, 240);
    padding: 6rem 0 0;
    margin: 6rem auto;
    font-size: 0.95rem;
    position: relative;
    width: 100%;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
    background-color: transparent;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin: 4rem auto;
    border: 0.15rem solid rgba(0, 112, 240, 0.1);
    padding: 1.3rem;
    border-radius: 2rem;
}

.footer-col {
    padding: 0 1.5rem;
}

.footer-col h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem 0;
    position: relative;
    padding: 0 0 1rem 0;
}

.footer-col h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16rem;
    height: 0.3rem;
    background-color: rgb(192, 0, 240);
    border-radius: 0.2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.1rem;
    color: rgb(192, 0, 240);
    width: 2rem;
    margin: 0.3rem 0;
}

.info-item p {
    margin: 0;
    color: white;
    line-height: 1.5;
    font-size: 1rem;
}

.info-item p:hover {
    color: rgb(192, 0, 240);
}

.footer-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 15rem;
}

.footer-logo img {
    max-width: 18rem;
    height: auto;
    margin: 0 0 1.5rem 0;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: 0.1rem;
}

.footer-logo .tagline {
    color: gray;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}


.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0 4rem;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.footer-nav a:before {
    content: '›';
    margin-right: 0.5rem;
    color: rgb(0, 123, 255);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: rgb(192, 0, 240);
    transform: translateX(0.5rem);
}

.footer-nav a:hover:before {
    color: rgb(192, 0, 240);
    transform: translateX(0.3rem);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2.5rem 0;
    margin: 4rem auto;
    text-align: center;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: gray;
    font-size: 0.9rem;
}

.copyright p a {
    color: rgb(0, 123, 255);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright p a:hover {
    color: rgb(0, 255, 136);
}

.footer-col .widget {
    margin: 0 0 2.5rem 0;
}

.footer-col .widget:last-child {
    margin: 0;
}

.footer-col .widget-title {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    position: relative;
    padding: 0 0 1rem 0;
}

.footer-col .widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 0.2rem;
    background: rgb(0, 123, 255);
}

@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col-3 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col-3 {
        grid-column: span 1;
    }
    
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-item {
        justify-content: center;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-nav a:before {
        display: none;
    }
    
    .footer-nav a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
}



.footer-widgets > :nth-child(3) {
    text-align: right;
}

.footer-widgets > :nth-child(3) h5:after {
    left: auto;
    right: 0;
}

.footer-widgets > :nth-child(3) .info-item {
    justify-content: flex-end;
}