/* Footer Styles - Extracted from main.php */

/* Footer Styles */
.footer-section {
    margin-top: 4rem;
}

.footer-main {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1e40af 50%, transparent 100%);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1e40af;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db !important;
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    color: #3b82f6 !important;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    color: #d1d5db !important;
    line-height: 1.4;
}

/* Additional specificity for contact section */
.footer-main .footer-contact .contact-item {
    color: #d1d5db !important;
}

.footer-main .footer-contact .contact-item span {
    color: #d1d5db !important;
    opacity: 1 !important;
}

.footer-main .footer-contact .contact-item i {
    color: #3b82f6 !important;
    opacity: 1 !important;
}

/* Force visibility for all footer contact elements */
footer .footer-contact * {
    color: #d1d5db !important;
    opacity: 1 !important;
}

footer .footer-contact i {
    color: #3b82f6 !important;
}

/* Ensure footer doesn't inherit body color */
footer .footer-main {
    color: white !important;
}

footer .footer-contact .contact-item {
    color: #d1d5db !important;
}

footer .footer-contact .contact-item span {
    color: #d1d5db !important;
}

.footer-bottom {
    background: #111827;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-badge {
    background: rgba(30, 64, 175, 0.2);
    color: #93c5fd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 64, 175, 0.3);
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-widget {
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}