/* ========================================
   Footer Styles
   ======================================== */

.site-footer {
    background: #111827;
    color: #d1d5db;
    margin-top: 80px;
}

/* Footer Top */
.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #374151;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00a63f;
}

/* Footer Middle - Newsletter */
.footer-middle {
    padding: 50px 0;
    border-bottom: 1px solid #374151;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.newsletter-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 14px;
    color: #9ca3af;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #374151;
    background: #1f2937;
    color: #fff;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00a63f;
    background: #374151;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    padding: 14px 32px;
    background: #00a63f;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #008c35;
}

/* Social Links */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    border-radius: 50%;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #00a63f;
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-legal p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-bottom a:hover {
    color: #00a63f;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payment span {
    font-size: 14px;
    color: #9ca3af;
}

.footer-payment img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-payment img:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-middle {
        padding: 40px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .footer-payment {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 12px;
    }
}