footer.footer {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 50px 20px 30px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
    gap: 80px;
    border-bottom: none;
    background-image: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.footer-right-group {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgb(229, 231, 235);
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: rgb(55, 126, 207);
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.footer-contact-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-contact-icons .contact-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-contact-icons .contact-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}

.footer-contact-icons .contact-btn:hover {
    color: rgb(55, 126, 207);
}


.footer-contact-icons .contact-btn:focus-visible {
    outline-offset: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgb(255, 255, 255);
    margin: 0;
}

.footer-bottom .copyright {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgb(156, 163, 175);
    margin: 0;
}

@media screen and (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-right-group {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-contact-icons {
        justify-content: center;
    }

    .footer-brand-name {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .footer-brand-name {
        font-size: 24px;
    }

    .footer-contact-icons a {
        width: 44px;
        height: 44px;
    }

    .footer-contact-icons a svg {
        width: 22px;
        height: 22px;
    }
}