/* =====================================================
   FOOTER STYLES - Extracted from styles.css
   ===================================================== */

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: rgba(33, 124, 118, 1);
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgba(33, 124, 118, 1);
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section p a {
    color: inherit;
    text-decoration: none;
}

.footer-section p a:hover {
    color: #ffffff;
}

.footer-section .company-division-item a {
    color: #d1d5db;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .company-division-item a:hover {
    color: rgba(33, 124, 118, 1);
}

.footer-section .company-division-item span {
    color: #d1d5db;
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-section .certifications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0;
    list-style: none;
}

.footer-section .certifications-list li {
    background-color: #374151;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e5e7eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-location-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-location-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit;
}

.footer-location-link:hover {
    color: rgba(33, 124, 118, 1);
}

.footer-location-separator {
    color: #d1d5db;
    margin: 0 0.2rem;
}

/* =====================================================
   FOOTER RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
    }
    
    .footer-section .certifications-list {
        justify-content: center;
    }
    
    .footer-location-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section .certifications-list li {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .footer-location-separator {
        display: none;
    }
    
    .footer-location-links {
        flex-direction: column;
        gap: 0.3rem;
    }
} 