/* footer.css - Стили подвала */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #c0392b;
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
    border-radius: 2px;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-section a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.gis-link {
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
