#footer-v2 {
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

    #footer-v2 .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #3498db, #2ecc71);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #footer-v2 .footer-about {
        color: #a4b5c6;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    #footer-v2 h5 {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
    }

        #footer-v2 h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 30px;
            height: 2px;
            background: #3498db;
        }

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

        #footer-v2 .footer-links li {
            margin-bottom: 12px;
        }

        #footer-v2 .footer-links a {
            color: #a4b5c6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

            #footer-v2 .footer-links a:hover {
                color: #3498db;
                transform: translateX(5px);
            }

    #footer-v2 .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    #footer-v2 .social-icon {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        #footer-v2 .social-icon:hover {
            background: #3498db;
            transform: translateY(-3px);
            color: #fff;
        }

    #footer-v2 .footer-bottom {
        margin-top: 50px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: #a4b5c6;
    }

    #footer-v2 .footer-bottom-links {
        list-style: none;
        padding: 0;
        margin: 15px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        #footer-v2 .footer-bottom-links a {
            color: #a4b5c6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            #footer-v2 .footer-bottom-links a:hover {
                color: #3498db;
            }

@media (max-width: 768px) {
    #footer-v2 .footer-section {
        margin-bottom: 40px;
    }
}
