/* Professional Footer Styling */

.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #0056b3 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h5 {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
}

.footer-section a:hover {
    color: white;
    border-left-color: #28a745;
    padding-left: 1rem;
    transform: translateX(5px);
}

.status-badge {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge.success {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    color: #28a745;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Extended Footer - Quick Links Section */
.quick-links-section {
    background: #f8fafc;
    padding: 3rem 0;
    border-top: 3px solid #0056b3;
}

.quick-links-section h5 {
    color: #1a365d;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.quick-links-section h5::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #0056b3;
    margin-top: 0.5rem;
}

.btn-outline-primary,
.btn-outline-info {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.btn-outline-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateX(5px);
}

.btn-outline-info:hover {
    background: #17a2b8;
    border-color: #17a2b8;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Contact Info Styling */
.contact-info p {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Legal Disclaimer Card */
.legal-disclaimer-card {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 2px solid #4a5568;
    border-radius: 10px;
    padding: 1.5rem;
}

.legal-disclaimer-card h5 {
    color: #63b3ed;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-disclaimer-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section a:hover {
        transform: none;
        padding-left: 0.75rem;
    }
    
    .quick-links-section {
        padding: 2rem 0;
    }
    
    .btn-outline-primary:hover,
    .btn-outline-info:hover {
        transform: none;
    }
}

/* Copyright Section */
.copyright-section {
    background: #1a202c;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.copyright-section a {
    color: #63b3ed;
    text-decoration: none;
}

.copyright-section a:hover {
    color: white;
    text-decoration: underline;
}

/* Professional Enhancement */
.footer-section:first-child {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section:first-child h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section:first-child svg {
    color: #28a745;
}