.footer {
    background: var(--primary-color-100);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 154, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(187, 154, 101, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.footer__main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer__brand {
    flex-shrink: 0;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer__logo img {
    max-width: 150px;
    height: auto;
}

.footer__logo svg {
    display: block;
}

.footer__description {
    color: var(--white-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--white-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--secondary-color-100);
    transform: translateY(-3px);
}

.footer__social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer__social a:focus-visible {
    outline: 2px solid var(--secondary-color-100);
    outline-offset: 2px;
}

.footer__columns {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__column {
    flex: 1;
    min-width: 0;
}

.footer__title {
    color: var(--secondary-color-100);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'AlbertSansBold', sans-serif;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__links a:hover {
    color: var(--secondary-color-100);
    padding-left: 5px;
}

.footer__links a:focus-visible {
    outline: 2px solid var(--secondary-color-100);
    outline-offset: 2px;
}

/* Text without links - no hover effect */
.footer__links .footer__text {
    color: var(--white-muted);
    font-size: 15px;
    display: inline-block;
    cursor: default;
}

.footer__links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white-muted);
    font-size: 15px;
}

.footer__links--contact svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color-100);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__links--contact a {
    padding-left: 0;
}

.footer__links--contact a:hover {
    padding-left: 0;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    border-top: 1px solid var(--white-subtle);
    padding-top: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.footer__copyright {
    color: var(--white-faded);
    font-size: 14px;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: var(--white-faded);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--secondary-color-100);
}

.footer__legal a:focus-visible {
    outline: 2px solid var(--secondary-color-100);
    outline-offset: 2px;
}


@media (min-width: 640px) {
    .footer__columns {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer__brand {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__column {
        text-align: center;
    }
    
    .footer__links--contact li {
        justify-content: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .footer__main {
        flex-direction: row;
        gap: 4rem;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer__columns {
        gap: 3rem;
    }

    .footer__brand {
        width: 33.333%;
        max-width: 350px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer__social a,
    .footer__links a,
    .footer__legal a {
        transition: none;
    }
    
    .footer__social a:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .footer__description,
    .footer__links a,
    .footer__copyright,
    .footer__legal a {
        color: #fff;
    }
    
    .footer__social a {
        border: 2px solid var(--white-faded);
    }
    
    .footer__links a:hover {
        text-decoration: underline;
    }
}


