/* Footer Styles */

.site-footer {
    background: #0a2642;
    color: #fff;
    position: relative;
}

.footer-wave {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-desc {
    color: #b1bee0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer Menu */
.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    color: #b1bee0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: #fff;
}

/* Footer Contacts */
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b1bee0;
    font-size: 0.95rem;
}

.footer-contacts li a {
    display: flex;
    align-items: center;
    color: #b1bee0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts li a:hover {
    color: #fff;
}

.footer-contacts i {
    width: 20px;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Social Icons */
.footer-social {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social a i {
    font-style: normal !important;
    color: inherit;
    margin-right: 0px;
    font-size: inherit;
    width: auto;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #7a8bb3;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-col {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .footer-wave {
        height: 40px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contacts li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}
