.footer-wrapper {
    margin-top: 8rem;
    padding: 3rem 1.5rem 2rem;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
    width: fit-content;
}

.footer-company>img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.company-tagline {
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

.footer-information {
    display: flex;
    padding-bottom: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    width: 100%;
    font-size: 0.95rem;
    gap: 2rem;
    padding: 1rem 0;
}

.footer-links-simple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}
.footer-links-simple li {
    list-style-type: none;
}
.footer-links-simple li > a {
    color: #4C5253;
    text-decoration: none;
    &:hover {
       color: #333;
    }
}
.footer-link-col {
    margin-bottom: 1.5rem;
}

.footer-link-col>h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-link-col>h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    opacity: 0.5;
}

.footer-link-col li>a,
.footer-simple li>a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-link-col li>a:hover,
.footer-simple li>a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-link-col li {
    list-style-type: none;
    margin-bottom: 0.75rem;
}

.footer-link-col ul,
.footer-link-simple {
    padding: 0;
    margin: 0;
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-simple {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex-direction: row;
    justify-content: center;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SOCIAL LINKS */
.social-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link[aria-label="Facebook Logo"] i {
    color: #1877f2;
}

.social-link[aria-label="X Logo"] i {
    color: #14171a;
}

.social-link[aria-label="Instagram Logo"] {
    border: none;
    position: relative;
    background: #fff;
}

.social-link[aria-label="Instagram Logo"] i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link[aria-label="LinkedIn Logo"] i {
    color: #0a66c2;
}

@media (min-width: 320px) and (max-width: 520px) {
    .footer-link-simple {
      flex-direction: column;
      padding-left: 0px;
    }
  }

@media (max-width: 767px) {
    .footer-links {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 768px) {
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        justify-items: start;
        align-items: center;
    }

    .footer-socials {
        justify-self: end;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-link-col {
        justify-content: center;
    }

    .footer-links-simple {
        justify-content: center;
    }

    .footer-links {
        display: grid;
        gap: 12rem;
        justify-items: center;
    }
}

