.site-footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #1a2f3f);
    color: white;
    overflow: hidden;
}

/* Enhanced Particles Effect */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    mix-blend-mode: soft-light;
}

/* Decorative Elements */
.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.footer-content {
    position: relative;
    padding: 8rem 0 4rem;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
}

/* Enhanced Brand Section */
.footer-brand {
    padding-right: 3rem;
    position: relative;
}

.footer-logo {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-logo img {
    max-height: 80%;
    width: 40%;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    height: 40%;
}

.footer-logo:hover img {
    transform: translateY(-3px);
}

.footer-title {
    font-size: 2.2rem;
    margin: 0;
    color: white;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    font-weight: var(--bold);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid white;
    font-family: var(--body-font);
    font-weight: var(--regular);
}

/* Enhanced Social Links */
.footer-social {
    display: flex;
    gap: 1.2rem;
}
.copyright a {
    color: #ffc700;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link i {
    position: relative;
    z-index: 1;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Enhanced Contact Section */
.footer-contact {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: var(--semibold);
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-list {
    display: grid;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-item:hover i {
    transform: rotate(360deg);
    background: white;
    color: var(--primary-color);
}

.contact-item a,
.contact-item span {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    font-weight: var(--regular);
}

.contact-item a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Enhanced Footer Bottom */
.footer-bottom {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.8rem 0;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    font-family: var(--body-font);
    font-weight: var(--regular);
}

/* Enhanced Scroll to Top Button */
.scroll-to-top {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    text-decoration: none;
    color: #ffc700;
}

.scroll-to-top:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 5rem 0 3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-description {
        padding-left: 0.8rem;
    }

    .contact-item:hover {
        transform: none;
    }
} 