/* Footer */
.footer {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--black-light) 0%,
        var(--black) 100%
    );
    background-attachment: fixed;
    padding: 50px 0 20px;
    color: var(--white);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../logo.png") center/contain no-repeat;
    background-attachment: fixed;
    opacity: 0.02;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain !important;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    color: var(--gold);
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(244, 167, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.social-icons a:hover {
    transform: scale(1.15) rotate(360deg);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(244, 167, 53, 0.5);
}

.social-icons a:hover i {
    color: var(--black);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
