footer.footer-container {
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(41, 182, 246, 0.2);
    padding: 50px 7vw 50px;
    z-index: 50;
    overflow: hidden;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

footer .footer-section {
    flex: 1;
    min-width: 250px;
}

footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

footer .footer-svg-logo {
    fill: #29b6f6;
    flex-shrink: 0;
}

footer .footer-title-group {
    white-space: nowrap;
}

footer .footer-main-title {
    font-size: 1.3rem;
    margin: 0;
    margin-bottom: 5px;
}

footer .footer-sub-title {
    font-size: 0.75rem;
    color: #b3e5fc;
    margin: 0;
}

footer .footer-desc {
    color: #bbdefb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

footer .social-links {
    display: flex;
    gap: 15px;
}

footer .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.15);
    border: 1px solid rgba(41, 182, 246, 0.3);
    transition: all 0.3s ease;
}

footer .social-icon:hover {
    background: rgba(41, 182, 246, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.2);
}

footer .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

footer .footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00ffcc, #0099ff);
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-link {
    display: block;
    padding: 8px 0;
    color: #bbdefb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

footer .footer-link:hover {
    color: #29b6f6;
    transform: translateX(5px);
}

footer .footer-link::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #29b6f6;
    transition: all 0.3s ease;
}

footer .footer-link:hover::before {
    transform: translateY(-50%) translateX(3px);
}

footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

footer .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #bbdefb;
    font-size: 0.95rem;
}

footer .contact-item a,
footer .contact-item span {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .contact-item a:hover,
footer .contact-item span:hover {
    color: #29b6f6;
}

footer .contact-icon {
    flex-shrink: 0;
}

footer .footer-newsletter {
    margin-top: 30px;
}

footer .newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

footer .newsletter-input {
    flex: 1;
    height: 42px;
    padding: 0 15px;
    border-radius: 25px;
    border: 1px solid rgba(41, 182, 246, 0.3);
    background: rgba(25, 65, 105, 0.3);
    color: #e0f0ff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

footer .newsletter-input:focus {
    outline: none;
    border-color: #29b6f6;
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.3);
}

footer .newsletter-btn {
    height: 42px;
    padding: 0 25px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

footer .newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.4);
}

footer .footer-bottom {
    text-align: center;
    padding-top: 25px;
}

footer .footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(41, 182, 246, 0.3),
        transparent
    );
    margin: 0 auto 25px;
    width: 80%;
}

footer .copyright {
    color: #81d4fa;
    font-size: 0.85rem;
    margin: 5px 0;
    white-space: nowrap;
}

.footer-more-right {
    padding-left: 65px;
}

@media (max-width: 768px) {
    footer .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    footer .footer-section {
        width: 100%;
    }

    footer .footer-heading {
        margin-bottom: 18px;
    }

    footer .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    footer .newsletter-form {
        flex-direction: column;
    }

    footer .newsletter-btn {
        width: 100%;
    }

    .footer-more-right {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    footer .footer-container {
        padding: 40px 20px 25px;
    }

    footer .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-title-group {
        white-space: normal;
    }

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

    footer .footer-links {
        grid-template-columns: 1fr;
    }
}
