/* Footer Styles */

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --background-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --accent-color: #3b82f6;
    --error-color: #ef4444;
    --success-color: #22c55e;
    --card-bg: rgba(255, 255, 255, 0.05);
}

/* Main Footer Styles */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* All Footer Sections General Styling */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.footer-section p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Brand Section */
.brand-section p {
    opacity: 0.9;
}

.contact-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    transition: all 0.3s ease !important;
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--text-light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

/* Links Section */
.two-column-links {
    display: flex;
    gap: 2rem;
}

/* Social Links Container */
.social-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem; /* Much wider gap to prevent overlap */
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

.social-link {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.social-link:hover {
    color: var(--text-light);
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.coming-soon-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(100, 116, 139, 0.7);
    white-space: nowrap;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    margin-top: 0.75rem;
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .brand-section {
        grid-column: span 1;
    }
    
    .two-column-links {
        flex-direction: column;
        gap: 0;
    }
    
    .social-links {
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 2rem;
    }
    
    .coming-soon-badge {
        font-size: 0.65rem;
    }
}

