/*Footer*/
.footer{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color:white;
    padding: 50px 0 20px;
    margin-top: 50px;

}
.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand h3{
    font-size: 1.8rem;
    margin-bottom: 15px;
    background:linear-gradient(135deg,#2575fc, 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand p{
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}
.social-links{
    display:flex;
    gap: 15px;
}    
.social-link{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}
.social-link:hover{
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    transform: translateY(-3px);
}
.footer-links h4{
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}
.footer-links h4::after{
    content: none;
    position:absolute;
    bottom: -8px;
    left: 0;
    width:30px;
    height:2px;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
}
.footer-links ul{
    list-style: none;
}
.footer-links li{
    margin-bottom: 12px;
}
.footer-links a{
    color:#b0b0b0;
    text-decoration: none;
    transition:all 0.3s ease;
    display:flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover{
    color:#2575fc;
    transform: translateX(5px);
}
.footer-links i{
    font-size: 0.8rem;
    color: #2575fc;
}
.contact-info i{
    color:#2575fc;
    align-items:flex-start;
    gap:10px;
    margin-bottom: 15px;
    color:#b0b0b0;
}
.contact-info i{
    color:#2575fc;
    margin-top:3px;
    flex-shrink:0;
}
.awards{
    background:rgba(255, 255, 255, 0.5);
    padding:15px;
    border-radius:10px;
    border-left: 4px solid #2575fc;
}
.awards h4{
    margin-bottom: 10px !important;
}
.awards p{
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.footer-bottom{
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #3333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright{
    color:#666;
    font-size: 0.9rem;
}
.footer-legal{
    display: flex;
    gap:20px; 
}
.footer-legal a{
    color:#666;
    text-decoration: none;
    font-size:0.9rem;
    transition :color 0.3s ease;
}
.footer-lagal a:hover{
    color: #2575fc;
}
.trust-badges{
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.trust-badge{
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #b0b0b0;
    border: 1px solid #333;
}
/*Media Queries*/
@media(max-width:1100px){
    .footer-content{
        grid-template-columns: 2fr 1fr 1fr;
        gap:30px;
    }
}
@media(max-width:768px){
    .footer{
        padding: 40px 0 20px;
    }
}
.footer-content{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}
.footer-links h4::after{
    left: 50%;
    transform: translateX(-50%);
}
.footer-links a:hover{
    transform: none;
}
.footer-bottom{
    flex-direction: column;
    text-align: center;
}
.footer-legal{
    justify-content: center;   
}
.social-links{
    justify-content: center;
}
.trust-badges{
    justify-content: center;
}