/* Footer Styles */
.footer {
    background-color: #393a3c;
    padding: 40px 0 20px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: normal;
    width: 100%;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Contact Section */
.footer-contact {
    text-align: left;
    justify-self: start;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.section-heading svg {
    width: 20px;
    height: 20px;
    color: #ec252e;
    flex-shrink: 0;
}

.section-heading h3 {
    color: #ec252e;
    font-size: 1.25rem;
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 900;
}

.footer-contact p {
    margin: 0.35rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Center Section */
.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.footer-tagline {
    margin-bottom: 1rem;
}

.footer-tagline p {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

.footer-tagline p:first-child {
    margin-bottom: 0.2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Legal Section */
.footer-legal {
    text-align: right;
    justify-self: end;
    align-items: flex-end;
}

.footer-legal .section-heading {
    justify-content: flex-end;
    width: 100%;
}

.footer-legal h3 {
    color: #ec252e;
    font-size: 1.5rem;
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 900;
    line-height: 1.2;
}

.footer-legal ul {
    text-align: right;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-legal li {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.footer-legal li::before {
    content: "•";
    color: #ec252e;
    margin-right: 0.5rem;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    padding: 0.25rem 0;
    white-space: nowrap;
}

.footer-legal a:hover {
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #ec252e;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    padding: 0.5rem;
}

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

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

    .footer-center {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-contact, .footer-legal {
        text-align: center;
        justify-self: center;
        align-items: center;
    }

    .section-heading, .footer-legal .section-heading {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        margin-bottom: 0.5rem;
    }

    .footer-tagline p {
        font-size: 1.2rem;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin: 0.5rem 0;
        justify-content: center;
    }

    .footer-nav a {
        padding: 0.25rem;
        font-size: 0.85rem;
    }

    .social-links {
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .footer-contact {
        order: 1;
    }

    .footer-center {
        order: 0;
    }

    .footer-legal {
        order: 2;
    }

    .footer-legal ul {
        align-items: center;
        gap: 0.25rem;
    }

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

    .footer-logo {
        margin-bottom: 0.5rem;
    }

    .footer-logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 15px;
    }

    .footer-container {
        gap: 1.25rem;
    }

    .footer-tagline p {
        font-size: 1.1rem;
    }

    .section-heading h3 {
        font-size: 1.1rem;
    }

    .footer-nav a,
    .footer-legal a,
    .footer-contact p {
        font-size: 0.8rem;
    }

    .footer-logo img {
        height: 30px;
    }

    .social-links {
        margin-top: 0.25rem;
    }

    .social-links a {
        font-size: 0.9rem;
    }
} 