.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer h2, .footer h3 {
    margin-bottom: 15px;
}

.footer p {
    color: #bbb;
    line-height: 1.6;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.social-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-links a {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social-links .wa {
    background: #25D366;
}

.social-links .ig {
    background: #E1306C;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Google Maps */
.footer-map iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 10px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    color: #888;
    font-size: 14px;
}