
.footer {
    background: linear-gradient(180deg, #003366 0%, #001f3f 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(3, 157, 211, 0.3);
}


.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #039DD3, #003366, #039DD3);
    box-shadow: 0 0 15px rgba(3, 157, 211, 0.5);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 300px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

/* Sublinierea titlurilor de coloană cu albastrul #039DD3 */
.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #039DD3;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(3, 157, 211, 0.6);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(3, 157, 211, 0.5);
}

.footer-links i {
    margin-right: 10px;
    color: #039DD3;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: #039DD3;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 25px;
    margin-top: 3px;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.iban-list {
    background: rgba(0, 31, 63, 0.6);
    border: 1px solid rgba(3, 157, 211, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.iban-list p {
    font-family: 'Courier New', monospace;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iban-list p:last-child {
    margin-bottom: 0;
}

/* Feedback vizual excelent la trecerea mouse-ului pe IBAN */
.iban-list p:hover {
    background: rgba(3, 157, 211, 0.2);
    border-color: #039DD3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(3, 157, 211, 0.4);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: #039DD3;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(3, 157, 211, 0.5);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright a {
    color: #039DD3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        z-index: 20;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
}