.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 15px;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.map-col {
    flex: 1.5;
}

.footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
        margin: 10px auto;
    }
}