/* ===== FOOTER STYLES ===== */

.footer {
    background: #f7f1e3;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: bold;
}

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

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

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

/* Resources Section */
.resources-section ul li a {
    color: #333;
}

/* CLP Mission Section */
.mission-section {
    text-align: left;
}

.mission-section p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mission-section h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ec1e2c;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 30, 44, 0.3);
}

.social-links a:hover::before {
    transform: translateY(0);
}

/* Social Brand Colors */
.social-links a[title="Facebook"]:hover::before { background: #1877F2; }
.social-links a[title="LinkedIn"]:hover::before { background: #0A66C2; }
.social-links a[title="Twitter"]:hover::before { background: #1DA1F2; }
.social-links a[title="YouTube"]:hover::before { background: #FF0000; }
.social-links a[title="Instagram"]:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Legal Info */
.legal-info {
    margin-top: 2rem;
}

.legal-info h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.legal-info p {
    color: #333;
    font-size: 0.9rem;
}

/* Quick Links Section */
.quick-links-section ul li a {
    color: #333;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-info h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-info p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #ec1e2c;
    text-decoration: none;
}

.contact-info a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Mailing Address */
.mailing-address {
    margin-top: 2rem;
}

.mailing-address h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.mailing-address p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mailing-address a {
    color: #ec1e2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mailing-address a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #afabab;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .social-links {
        justify-content: center;
    }
}
