/* Footer Styles - Consistent across all pages */
.footer {
    background: #f5f8fb;
    border-top: 1px solid #e3e9f1;
    margin-top: 3.5rem;
    font-family: inherit;
}

.footer-container {
    max-width: 1455px;
    margin: 0 auto;
    padding: 2.7rem 2.2rem 1.1rem 2.2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 210px;
    min-width: 210px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.footer-desc {
    color: #4b5e7a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #2e3b4e;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.18s;
}

.footer-links a:hover {
    color: #1976d2;
    text-decoration: underline;
}

.footer-contact {
    color: #4b5e7a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-social-label {
    color: #7b8aad;
    font-size: 0.97rem;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-social {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    background: #e3ecf7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1976d2 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    font-size: 1rem !important;
}

.footer-social:hover {
    background: #1976d2 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

.footer-social-icon {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    margin: 0 auto !important;
    fill: currentColor !important;
    color: inherit !important;
}

/* Override specific social icon colors */
.footer-social-wa {
    background: #25d366 !important;
}

.footer-social-fb {
    background: #1877f3 !important;
}

.footer-social:hover .footer-social-icon {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #e3e9f1;
    padding: 1.2rem 2.2rem;
    text-align: center;
    color: #6b7c93;
    font-size: 0.9rem;
    background: #f0f5fc;
}

/* Responsive styles */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem 0;
    }
    
    .footer-section {
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e3e9f1;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
}
