/* ===== FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widget {
    padding: 0 15px;
}

.widget-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.2rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    border-radius: 2px;
}

.brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.4);
    color: #fff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #4a7c59;
    padding-left: 8px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

/* Contact Info */
.contact-info {
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: #b0b0b0;
    font-weight: 500;
}

.contact-item i {
    color: #4a7c59;
    margin-top: 2px;
    width: 16px;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4a7c59;
}

/* Footer Bottom */
.footer-bottom {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #4a7c59;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 2rem 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
}