/* ---------- Footer ---------- */
.footer {
    background: #1c2632;
    color: #f0f0f0;
    padding: 60px 8%;
    font-family: 'Montserrat', sans-serif;
    border-top: 4px solid #1abc9c;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Logo e Slogan */
.footer-logo {
    max-width: 260px;
    text-align: center;
}

.footer-logo img {
    width: 75%;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo .slogan {
    font-size: 1.1rem;
    margin-top: 12px;
    font-weight: 600;
    color: #ffcc00;
    font-style: italic;
}

/* Link utili e servizi */
.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin: 8px 0;
}

.footer-links a,
.footer-services a,
.footer-contact a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: #1abc9c;
    padding-left: 5px;
}

/* Social */
.footer-social .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social a {
    color: #ffffff;
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #1abc9c;
    transform: scale(1.15);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links,
    .footer-services,
    .footer-social,
    .footer-contact {
        width: 100%;
        text-align: center;
    }

    .footer-social .social-icons, .footer-contact {
        justify-content: center;
    }

    .footer-social a {
        font-size: 2.5rem;
    }
}