/* ============================================
   CIFRE ACADEMY - Footer
   ============================================ */

footer {
    background: #0a0e27;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0066FF;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    color: white;
    font-weight: 300;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 300px;
}

/* Links Columns */
.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #00D4FF;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00D4FF;
}

/* Schedule Items */
.schedule-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0066FF;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

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

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

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 3rem;
    }
    
    .footer-brand {
        flex: 1 1 100%;
    }
    
    .footer-links {
        flex: 1 1 calc(33% - 2rem);
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}