/* ========================================
   FOOTER STYLES - HICMAN CAPITAL PARTNER
   ======================================== */

/* Footer Base */
.footer-finance {
    background: linear-gradient(180deg, var(--finance-primary) 0%, #1a1b2e 100%);
    color: var(--finance-white);
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--finance-white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    color: var(--finance-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-address i {
    color: var(--finance-secondary);
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--finance-white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--finance-secondary);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--finance-secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--finance-white);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--finance-secondary);
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--finance-white);
}

/* Footer Social */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--finance-white);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--finance-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--finance-secondary);
    color: var(--finance-primary);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal li {
    display: inline;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--finance-white);
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .footer-finance {
        margin-top: 3rem;
    }

    .footer-title {
        margin-top: 1.5rem;
    }

    .footer-title:first-child {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .footer-finance {
        text-align: center;
        padding-top: 2.5rem;
    }

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

    .footer-links a {
        display: inline-block;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 3rem !important;
        padding-top: 2rem !important;
    }

    .footer-legal {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo-subtitle {
        font-size: 0.7rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.9rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Animation on Scroll (optional - aggiungere con JS) */
.footer-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-animate.visible {
    opacity: 1;
    transform: translateY(0);
}