/* ==============================
   Footer
   ============================== */
.footer {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 32px 24px;
    border-top: 4px solid #ffd700;
    margin-top: auto;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.footer-section .footer-sub {
    font-size: 13px;
    color: #a5d6a7;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
}

.footer-bottom p {
    font-size: 14px;
    color: #a5d6a7;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer {
        padding: 24px 16px;
    }
}