.footer-pro{
    background:linear-gradient(135deg,#0b7bd8,#00c6ff);
    color:#fff;
    padding:50px 20px 24px;
    margin-top:60px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr 1fr;
    gap:40px;
    align-items:start;
}

.footer-col h4{
    margin:0 0 14px;
    font-size:1.05rem;
    font-weight:700;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-brand img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
    border:2px solid rgba(255,255,255,0.65);
}

.footer-brand h3{
    margin:0 0 8px;
    font-size:1.2rem;
}

.footer-brand p{
    margin:0;
    font-size:.95rem;
    line-height:1.6;
    opacity:.95;
    max-width:260px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    opacity:.96;
    transition:all .2s ease;
}

.footer-links a:hover{
    opacity:1;
    transform:translateX(3px);
}

.footer-contact p{
    margin:0 0 14px;
    font-size:.95rem;
    line-height:1.6;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.footer-socials{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.footer-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.16);
    color:#fff;
    text-decoration:none;
    font-size:1.1rem;
    transition:all .2s ease;
}

.footer-socials a:hover{
    background:rgba(255,255,255,0.28);
    transform:translateY(-2px);
}

.footer-bottom{
    margin-top:30px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,0.22);
    text-align:center;
    font-size:.92rem;
    opacity:.95;
}

@media (max-width: 900px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
        text-align:center;
    }

    .footer-brand{
        align-items:center;
    }

    .footer-brand p{
        max-width:none;
    }

    .footer-links{
        align-items:center;
    }

    .footer-socials{
        justify-content:center;
    }
}