/* --- FOOTER STYLING (V3 Dark Blue Theme) --- */
.custodia-footer {
    background: #0a1e3d; /* Dark Blue from provided file structure */
    color: #b8c5d6;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 5px solid #00d4ff; /* Cyan accent line */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 30px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #e8eef5;
}

/* FIX: Reducerea dimensiunii logo-ului Robot în Footer */
.custodia-footer .logo-robot {
    height: 30px; /* Dimensiune optimă pentru alinierea în Footer */
    width: auto;
}
/* END FIX */

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e8eef5;
    text-transform: uppercase;
}

.footer-subtitle {
    font-size: 0.75rem;
    color: #9ba9bd;
    letter-spacing: 1px;
    margin-top: -3px;
    display: block;
}

.footer-heading {
    font-size: 1rem;
    color: #e8eef5;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #1e3a5f;
    padding-bottom: 5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    color: #9ba9bd;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.contact-item svg {
    color: #00d4ff;
    width: 20px;
    height: 20px;
}

.legal-bar {
    border-top: 1px solid #1e3a5f;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

.legal-bar a {
    color: #9ba9bd;
    margin: 0 10px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo-box {
        justify-content: center;
    }
    .footer-heading {
        margin-top: 20px;
        text-align: center;
    }
    .footer-list, .contact-item {
        text-align: center;
        justify-content: center;
    }
}