
.footer .footer-menu ul li a:hover {
    color: #00a2ff !important;
    transition: color 0.3s ease;
}

.footer-contact {
    margin-top: 30px;
    text-align: center;
}

.footer-contact p {
    color: #d2d5fc;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-contact p i {
    color: #00a2ff;
    font-size: 18px;
    min-width: 20px;
}

.footer-contact p a {
    color: #d2d5fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #00a2ff !important;
    text-decoration: underline;
}

.footer .social-links ul li a:hover {
    background: #00a2ff !important;
    color: #fff !important;
    border-color: #00a2ff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
}

.footer .flogo a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.footer .flogo a img {
    transition: transform 0.3s ease;
}

.footer .copy-bg p a {
    color: #d2d5fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .copy-bg p a:hover {
    color: #00a2ff !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-contact p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-contact p i {
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .footer .footer-menu ul li {
        display: block;
        margin: 10px 0;
        margin-right: 0;
    }
    
    .footer .footer-menu ul li::after {
        display: none;
    }
    
    .footer-contact p {
        font-size: 14px;
        line-height: 24px;
    }
} 