/* ==========================================================================
   Metal America Concrete - Footer Styles
   ==========================================================================
   Full footer component styles cloned from the Metal America reference theme.
   Includes slogan, navigation columns, contact info, social icons,
   BBB badge, copyright, and all responsive breakpoints.
   ========================================================================== */

/* ==========================================================================
   Site Footer - Main Container
   ========================================================================== */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0 0;
    width: 100%;
    font-family: 'Work Sans', 'Work Sans Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   Footer Slogan Section
   ========================================================================== */

.footer-slogan-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.footer-slogan {
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Footer Separator
   ========================================================================== */

.footer-separator {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background-color: #fff;
    opacity: 0.3;
}

/* ==========================================================================
   Footer Mascot / Logo
   ========================================================================== */

.footer-mascot-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.footer-mascot-logo {
    width: 150px;
    height: auto;
    display: block;
}

/* ==========================================================================
   Footer Navigation
   ========================================================================== */

.footer-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 6px 20px 6px 0;
    line-height: 1.5;
}

.footer-nav-list a:hover {
    color: #ff2400;
}

/* ==========================================================================
   Footer Bottom Section
   --------------------------------------------------------------------------
   3-column layout: Contact | Center Logo | Social + BBB
   ========================================================================== */

.footer-bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   Footer Contact (Left Column)
   -------------------------------------------------------------------------- */

.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ff2400;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #ff2400;
    flex-shrink: 0;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: #ff2400;
}

/* --------------------------------------------------------------------------
   Footer Center Logo (Center Column)
   -------------------------------------------------------------------------- */

.footer-center-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-eagle-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-brand-logo {
    max-width: 240px;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Footer Social Icons (Right Column)
   -------------------------------------------------------------------------- */

.footer-social-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: #ff2400;
    text-decoration: none;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-social-icon img {
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------------------------------
   Footer App Store Badges
   -------------------------------------------------------------------------- */

.footer-app-badges {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-app-badges a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-app-badges a:hover {
    opacity: 0.8;
}

.footer-app-badges img {
    height: 45px;
    width: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Footer BBB Badge
   -------------------------------------------------------------------------- */

.footer-bbb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bbb img {
    max-width: 280px;
    height: auto;
    display: block;
}

.footer-bbb a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

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

/* ==========================================================================
   Footer Copyright - Full Width Bar
   ========================================================================== */

.footer-copyright-fullwidth {
    background-color: #111;
    padding: 15px 0;
    margin-top: 30px;
    width: 100%;
}

.footer-copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright-text {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
}

.footer-copyright-text a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright-text a:hover {
    color: #ff2400;
}

.footer-copyright-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copyright-links a {
    font-size: 0.82rem;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   RESPONSIVE: Max-Width 1200px
   ========================================================================== */

@media (max-width: 1200px) {

    .footer-slogan {
        font-size: 60px;
    }

    .footer-navigation {
        padding: 30px 20px;
        gap: 16px;
    }

    .footer-bottom-section {
        padding: 25px 20px;
        gap: 24px;
    }
}

/* ==========================================================================
   RESPONSIVE: Max-Width 1024px
   ========================================================================== */

@media (max-width: 1024px) {

    .footer-slogan {
        font-size: 48px;
    }

    .footer-slogan-container {
        height: 100px;
    }

    .footer-bottom-section {
        gap: 20px;
    }

    .footer-eagle-logo {
        max-width: 150px;
    }

    .footer-brand-logo {
        max-width: 200px;
    }
}

/* ==========================================================================
   RESPONSIVE: Max-Width 960px
   --------------------------------------------------------------------------
   Navigation columns switch to 2-column grid.
   ========================================================================== */

@media (max-width: 960px) {

    .footer-slogan {
        font-size: 40px;
    }

    .footer-slogan-container {
        height: 90px;
    }

    .footer-bottom-section {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-contact {
        flex: 0 0 auto;
        width: auto;
        align-items: flex-start;
        margin: 0 auto;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-center-logo {
        flex: 0 0 100%;
        order: -1;
    }

    .footer-social-section {
        flex: 0 0 100%;
        align-items: center;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
    }

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

    .footer-copyright-container {
        flex-direction: column;
        gap: 10px;
        text-align: left;
        align-items: flex-start;
    }
}

/* ==========================================================================
   RESPONSIVE: Max-Width 768px
   --------------------------------------------------------------------------
   Navigation columns stack to single column.
   ========================================================================== */

@media (max-width: 768px) {

    .site-footer {
        padding: 20px 0 0;
        display: flex;
        flex-direction: column;
    }

    .footer-slogan-container {
        order: 1;
        height: auto;
        padding: 20px;
        justify-content: flex-start;
    }

    .footer-slogan {
        font-size: 32px;
        text-align: left;
    }

    .footer-separator {
        display: none;
    }

    .footer-navigation {
        order: 2;
        padding: 20px;
    }

    .footer-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        row-gap: 0;
    }

    .footer-nav-list a {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .footer-bottom-section {
        order: 3;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        order: 1;
        align-items: flex-start;
    }

    .footer-center-logo {
        order: 2;
        align-items: center;
        width: 100%;
    }

    .footer-social-section {
        order: 3;
        align-items: center;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
    }

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

    .footer-mascot-logo {
        width: 120px;
    }

    .footer-eagle-logo {
        max-width: 130px;
    }

    .footer-brand-logo {
        max-width: 180px;
    }

    .footer-social-icon {
        width: 34px;
        height: 34px;
    }

    .footer-social-icon svg,
    .footer-social-icon img {
        width: 16px;
        height: 16px;
    }

    .footer-bbb img {
        max-width: 320px;
    }

    .footer-copyright-fullwidth {
        order: 4;
        margin-top: 20px;
        padding: 12px 0;
    }

    .footer-copyright-text {
        font-size: 0.78rem;
    }

    .footer-copyright-links a {
        font-size: 0.78rem;
    }

    .footer-copyright-links {
        gap: 12px;
    }
}

/* ==========================================================================
   RESPONSIVE: Max-Width 600px
   ========================================================================== */

@media (max-width: 600px) {

    .footer-slogan {
        font-size: 26px;
    }

    .footer-slogan-container {
        height: auto;
        padding: 16px;
    }

    .footer-mascot-logo {
        width: 100px;
    }

    .footer-navigation {
        padding: 16px;
    }

    .footer-bottom-section {
        padding: 16px;
        gap: 16px;
    }

    .footer-contact-item {
        font-size: 0.82rem;
    }

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
    }

    .footer-eagle-logo {
        max-width: 110px;
    }

    .footer-brand-logo {
        max-width: 160px;
    }

    .footer-bbb img {
        max-width: 280px;
    }

    .footer-copyright-container {
        padding: 0 16px;
    }
}

/* ==========================================================================
   RESPONSIVE: Max-Width 480px
   ========================================================================== */

@media (max-width: 480px) {

    .site-footer {
        padding: 15px 0 0;
    }

    .footer-slogan {
        font-size: 22px;
    }

    .footer-slogan-container {
        height: auto;
        padding: 14px 15px;
    }

    .footer-mascot-section {
        padding: 20px 15px;
    }

    .footer-mascot-logo {
        width: 90px;
    }

    .footer-navigation {
        padding: 12px 15px;
    }

    .footer-bottom-section {
        padding: 14px 15px;
        gap: 14px;
    }

    .footer-contact-item {
        font-size: 0.78rem;
        gap: 6px;
    }

    .footer-social-icons {
        gap: 8px;
    }

    .footer-social-icon {
        width: 32px;
        height: 32px;
    }

    .footer-social-icon svg,
    .footer-social-icon img {
        width: 15px;
        height: 15px;
    }

    .footer-eagle-logo {
        max-width: 100px;
    }

    .footer-brand-logo {
        max-width: 140px;
    }

    .footer-bbb img {
        max-width: 260px;
    }

    .footer-copyright-fullwidth {
        margin-top: 15px;
        padding: 10px 0;
    }

    .footer-copyright-text {
        font-size: 0.72rem;
    }

    .footer-copyright-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-copyright-links a {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-footer {
        background-color: #fff;
        color: #000;
        padding: 20px 0;
    }

    .footer-slogan {
        color: #000;
        font-size: 24px;
    }

    .footer-separator {
        background-color: #000;
    }

    .footer-social-icons,
    .footer-bbb,
    .footer-mascot-section {
        display: none;
    }

    .footer-nav-title {
        color: #000;
    }

    .footer-nav-links a {
        color: #333;
    }

    .footer-copyright-fullwidth {
        background-color: #f5f5f5;
    }
}
