/* ===================================
   FOOTER
   Footer layout & compact footer
   (Originally styles.css lines 2617-2687)
   =================================== */

/* --- Footer --- */
.footer {
    padding: 10rem 0;
    border-top: 1px solid var(--color-orange-100);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Compact Footer */
.footer.footer-compact {
    padding: 2rem 0;
}

.footer-compact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-compact-inner {
        flex-direction: row;
        text-align: left;
    }
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contacts {
        gap: 2rem;
    }
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-slate-700);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: var(--color-orange-600);
}

.footer-contact-link svg {
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-slate-600);
    letter-spacing: 0.1em;
}
