/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
}

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

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Contact Section */
.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--gray);
}

.contact-info a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--coral);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--blue);
    transform: translateX(5px);
}
/* Brand Section */
.footer-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
}

.brand-description {
    color: var(--gray);
    margin: 1rem 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--blue);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--coral);
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, rgba(108,124,171,0.05) 0%, rgba(203,127,127,0.05) 100%);
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--blue);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
