/* Stunning Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    padding: 60px 20px 20px;
    margin-top: 80px;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #006400, #00ff00, #006400) 1;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #006400, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #00ff00;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #006400, transparent);
}

.footer-column p {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #006400, #004d00);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #00ff00, #006400);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
    border-color: #00ff00;
}

.footer-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: #006400;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ff00;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: #00ff00;
    left: -15px;
}

.footer-contact {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.footer-tagline {
    font-style: italic;
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    border-left: 3px solid #006400;
    background: rgba(0, 100, 0, 0.1);
}

/* Admin Login Button */
.footer-admin-login {
    margin-top: 20px;
}

.admin-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #006400, #000000);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
}

.admin-login-btn:hover {
    background: linear-gradient(135deg, #00ff00, #006400);
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
    border-color: #00ff00;
}

.lock-icon {
    font-size: 20px;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-admin-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(0, 100, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.admin-link:hover {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: #006400;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p,
.footer-credits p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.footer-copyright strong {
    color: #00ff00;
    font-weight: 700;
}

.footer-credits p {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 15px;
        margin-top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .admin-login-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 18px;
    }
    
    .admin-login-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
