/* Footer Styles */
footer {
    background-color: var(--color-primary-dark);
    color: white;
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    width: 100%;
    margin-top: auto;
    position: relative;
    font-family: var(--font-body);
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light), var(--color-primary));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-lg);
}

.footer-section h3 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
    position: relative;
    padding-bottom: var(--space-md);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
}

.footer-tagline {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
    color: #d9f0ff;
}

.footer-copyright {
    color: #a6d8ff;
    font-size: var(--text-sm);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.social-links a i {
    font-size: var(--text-lg);
    margin-right: var(--space-sm);
    width: 24px;
    text-align: center;
}

.social-links a:hover {
    color: #a6d8ff;
    transform: translateX(5px);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-sm);
    color: white;
    font-style: italic;
}

.footer-bottom p {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        margin-bottom: var(--space-xl);
    }

    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        align-items: center;
    }

    .social-links a {
        justify-content: center;
        width: 100%;
    }
    
    .social-links a:hover {
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        width: 100%;
    }
}