/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0f1720 0%, #1a2a2a 100%);
    color: #eaf2ea;
    position: relative;
    overflow: hidden;
    padding: 60px 0 20px;

}

.footer-wave {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23eaf2ea'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1200px 80px;
    animation: wave 12s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #43e97b, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-about {
    color: rgba(234, 242, 234, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(47, 122, 78, 0.2);
    border-radius: 50%;
    color: #43e97b;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #43e97b, #4facfe);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px);
}

.social-icon:hover::before {
    transform: scale(1);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #43e97b;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #43e97b, #4facfe);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-links li:hover {
    padding-left: 10px;
}

.footer-links li::before {
    content: "▸";
    position: absolute;
    left: -15px;
    color: #43e97b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
}

.footer-links a {
    color: rgba(234, 242, 234, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #43e97b;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(234, 242, 234, 0.8);
}

.legal-icon {
    color: #43e97b;
    width: 20px;
    text-align: center;
}

.contact-info {
    color: rgba(234, 242, 234, 0.8);
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 12px;
    color: #43e97b;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(67, 233, 123, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

copyright {
    font-size: 14px;
    color: rgba(234, 242, 234, 0.7);
}

.creator {
    font-size: 16px;
    color: rgba(234, 242, 234, 0.7);
    font-style: italic;
}

.creator span {
    color: #43e97b;
    font-weight: 600;
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background: radial-gradient(circle, #43e97b 0%, transparent 70%);
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand, .footer-links-col, .footer-legal, .footer-contact {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-links-col { animation-delay: 0.2s; }
.footer-legal { animation-delay: 0.4s; }
.footer-contact { animation-delay: 0.6s; }