/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-section {
    margin-bottom: 0;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section ul li a {
    color: var(--white);
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section {
        margin-bottom: 0;
    }
    
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-column: span 2;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
    
    .footer-section ul li:last-child {
        margin-bottom: 0;
    }
}

