.footer-modern {
    background: linear-gradient(90deg, #23272f 0%, #1a1d23 100%);
    color: #eee;
    padding: 2.5em 0 1.2em 0;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    border-top: 2px solid #ff9800;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2em;
}
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: space-between;
}
.footer-col {
    flex: 1 1 210px;
    min-width: 210px;
    margin-bottom: 1.5em;
}
.footer-col h3 {
    font-size: 1.15em;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 1em;
    letter-spacing: 0.03em;
}
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contacts li {
    display: flex;
    align-items: center;
    margin-bottom: 0.7em;
    font-size: 1em;
}
.footer-contact-icon {
    margin-right: 0.7em;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.7em;
    margin-top: 0.5em;
}
.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.7em;
    border-radius: 7px;
    background: #23272f;
    color: #eee;
    font-size: 1.15em;
    font-weight: 500;
    padding: 0.5em 1.1em;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    box-shadow: 0 2px 8px #ff980022;
}
.footer-social-link:hover {
    background: #ff9800;
    color: #fff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px #ff980055;
}
.footer-social-text {
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5em;
}
.footer-links a {
    color: #90caf9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}
.footer-links a:hover {
    color: #ff9800;
    text-decoration: underline;
}
.footer-route-btn {
    display: inline-block;
    margin-top: 0.7em;
    background: #ff9800;
    color: #fff;
    border-radius: 7px;
    padding: 0.5em 1.3em;
    font-size: 1em;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: background 0.18s;
    box-shadow: 0 2px 8px #ffe08280;
}
.footer-route-btn:hover {
    background: #1976d2;
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #ff980033;
    margin-top: 2em;
    padding-top: 1em;
    text-align: center;
    font-size: 1em;
    color: #bbb;
}
@media (max-width: 900px) {
    .footer-cols {
        flex-direction: column;
        gap: 1.5em;
    }
    .footer-col {
        min-width: 0;
    }
}