/* CVG Construction Footer Styles */
/* Footer, social links, and site-wide footer elements */

/* Footer */
.footer, .site-footer {
    background: #1B365D !important;
    color: white !important;
    padding: 3rem 0 1rem;
}

.footer *, .site-footer * {
    color: white !important;
}

.footer h4, .site-footer h4 {
    color: #FF6B35 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E8F4FD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: #E8F4FD;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .nav-toggle,
    .btn {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}
