/* Footer Styles */
.footer {
    background: #F9FAFB;
    color: #1f2937;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    margin-right: 0.75rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.footer-description {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-link.youtube {
    background: #ff0000;
}

.footer-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-link.facebook {
    background: #1877f2;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.crisis-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.powered-by-inline {
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #eef2ff;
    border: 1px solid #e0e7ff;
    border-radius: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
}

.powered-by-inline a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}

.powered-by-inline a:hover {
    text-decoration: underline;
}

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

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
}
