/* Refined Footer Styles - Dodo Traslochi */
.footer {
    background-color: #0f172a !important;
    /* Navy Blue */
    color: #cbd5e1 !important;
    /* Light Grey */
    padding-top: 40px;
    font-family: 'Rubik', sans-serif;
    display: block !important;
    visibility: visible !important;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-top .container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Brand Column */
.footer-brand .logo {
    color: #ffffff !important;
    font-size: 3.2rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    margin-bottom: 30px;
    line-height: 1.7;
    color: #94a3b8;
    font-size: 1.6rem;
}

/* Contact Items - Overrides */
.footer-contact .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
    background-color: transparent !important;
    /* Remove white box */
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    transform: none !important;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px) !important;
    box-shadow: none !important;
}

.footer-contact .contact-icon {
    background-color: transparent !important;
    /* Transparent bg for icon */
    color: #ff8c00 !important;
    /* Site Orange */
    min-width: 30px;
    height: 30px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    padding: 0 !important;
}

.footer-contact .contact-link {
    color: #cbd5e1 !important;
    /* Light Grey */
    font-weight: 400;
    font-size: 1.6rem;
    transition: 0.3s;
    text-decoration: none !important;
}

.footer-contact .contact-link:hover {
    color: #ff8c00 !important;
}

/* Links Columns */
.footer-list {
    padding: 0;
    margin: 0;
}

.footer-list-title {
    color: #ffffff !important;
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-list-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 4px;
    background-color: #f59e0b;
    border-radius: 2px;
}

.footer-link {
    color: #cbd5e1 !important;
    padding: 10px 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    color: #f59e0b !important;
    padding-left: 8px;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #020617 !important;
    /* Darker Navy */
    padding: 25px 0;
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: #64748b;
    font-size: 1.4rem;
    margin: 0;
}

.copyright-link {
    color: #f59e0b !important;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.copyright-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-top .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .footer-list-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list {
        text-align: center;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-link:hover {
        padding-left: 0;
        padding-right: 0;
        color: #f59e0b;
    }
}