/* ==== Footer ==== */

.footer {
    width: 100%;
    margin-top: 60px;
    background: linear-gradient(to bottom, #eaf3ff, #fbeef3);
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 0;
}

.footer-top {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-contact p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.logo-contact a {
    color: #997ADA;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.logo-contact a:hover,
.logo-contact a:hover i {
    color: #735ca3;
}
.logo-contact i{
    color: #333;
    transition: color 0.3s ease;
}
.footer-nav {
    margin-top: 10px;
}

.footer-nav a,
.legal-links a {
    text-decoration: none;
    color: #333;
    /* margin: 5px 10px; */
    padding: 5px 14px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-nav a::after,
.legal-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #97CBEB, #997ADA);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #668DC6;
    transform: scale(1.05);
}

.footer-nav a:hover:after,
.legal-links a:hover::after {
    width: 80%;
}


.social-btn {
    border: 1px solid #0077cc;
    padding: 8px 16px;
    border-radius: 20px;
    color: #0077cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #0077cc;
    color: #fff;
    transform: scale(1.05);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    text-align: right;
}

.copyright a {
    color: #997ADA;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.copyright a:hover,
.copyright a:hover i{
    color: #735ca3;
}
.copyright i{
    color: #333;
    transition: color 0.3s ease;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}