@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

.footer-premium {
    background: radial-gradient(circle at top, #0f172a 0%, #020617 100%);
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    padding-top: 60px;
    border-top: 2px solid #1e293b;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

/* --- LOGO PBE & PULSE --- */
.logo-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    animation: footerLogoPulse 3s ease-in-out infinite;
}

@keyframes footerLogoPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.2)); }
}

.brand h3 {
    color: #f8fafc;
    font-size: 24px;
    margin-bottom: 15px;
}

/* --- COLONNE TEXT --- */
.footer-col h4 {
    color: #f8fafc;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #818cf8;
    transform: translateX(8px);
}

/* --- CONTACT & SOCIAL (Eliminare "F I") --- */
.icon-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
}

.social-links {
    display: none; /* Am ascuns resturile "F I" până pui iconițe reale */
}

/* --- PARTENERI (MAXIMIZARE LOGO) --- */
.footer-partners {
    background: rgba(0, 0, 0, 0.25);
    padding: 60px 20px;
    text-align: center;
}

.partners-header span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #818cf8;
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px; /* Redus pentru a lăsa loc logo-ului */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px; /* Mai lat */
    height: 150px;    /* Mai înalt */
    transition: all 0.4s ease;
}

.partner-card img {
    max-height: 110px; /* MĂRIT LA MAXIMUM */
    max-width: 90%;
    width: auto;
    object-fit: contain;
}

/* Fix vizibilitate Avalw */
.avalw-fix img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.4)) !important;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #6366f1;
    transform: translateY(-10px);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    background: #020617;
    padding: 35px 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}