.footer {
    padding: 80px 0 48px;
    background-color: var(--primary-900);
    color: white;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.footer-main {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
}

.footer-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.footer-phone-wrapper:hover {
    transform: translateY(-2px);
}

.footer-phone {
    font-size: 18px;
    font-weight: 500;
}

.footer-phone-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--primary-900);
    transition: transform 0.3s ease;
}

.footer-phone-icon i {
    font-size: 18px;
}

.footer-phone-wrapper:hover .footer-phone-icon {
    transform: scale(1.1) rotate(45deg);
}

.footer-logo-icon {
    height: 40px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 968px) {
    .footer {
        padding: 60px 0 100px;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-phone {
        font-size: 16px;
    }
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer~.footer-copyright {
    border-top: none;
    padding-top: 0;
    margin-top: -60px;
}

@media (max-width: 968px) {
    .footer-disclaimer~.footer-copyright {
        margin-top: -10px;
    }
}

@media (max-width: 480px) {
    .footer-disclaimer~.footer-copyright {
        margin-top: 0px;
    }
}