/* Footer Styles */
.site-footer {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 185, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 49, 49, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem;
    position: relative;
    z-index: 2;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #01B95F;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}

/* Company Info */
.company-info .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 100px;
    height: 50px;
    border-radius: 10px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, red, green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, red, green);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(1, 185, 95, 0.3);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #01B95F;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: #01B95F;
    padding-left: 1.5rem;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a:hover {
    color: #01B95F;
    transform: translateX(3px);
}

.contact-item svg {
    color: #01B95F;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #01B95F;
}

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

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 3rem 0;
    }
    
    .company-info .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .footer-column h4 {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 0.8rem;
    }
    
    .footer-top {
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 300px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-logo img {
        width: 70px;
        height: 35px;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .contact-item {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item svg {
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
}

/* Animation for footer elements */
.footer-column {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for footer sections */
.footer-column {
    transition: transform 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
}
