/* Minimalist Footer Redesign */
.footer {
    background: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    border: none;
    margin-top: 4rem;
}

/* Remove all borders */
.footer::before,
.footer::after {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

/* Logo and tagline centered */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Social links in a row */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
}

.social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Contact info inline */
.footer-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.813rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact a:hover::after {
    width: 100%;
}

/* Bottom section - no border */
.footer-bottom {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #e5e7eb;
    font-size: 0.688rem;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.688rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Alternative minimalist layout */
.footer-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-divider {
    width: 1px;
    height: 16px;
    background: #e5e7eb;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-divider {
        display: none;
    }
}