/* ============================================================
   FOOTER — extracted from Footer.astro
   ============================================================ */

.footer-v1 {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px var(--hero-padding-x) 40px;
}

.footer-v1__container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-v1__content {
    display: grid;
    grid-template-columns: 350px auto;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

.footer-v1__logo {
    height: 30px;
    margin-bottom: 20px;
}

.footer-v1__brand p {
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-v1__contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-v1__emergency {
    color: var(--color-thunderbird) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-v1__contact-info a {
    color: var(--color-meteor);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-v1__contact-info a:hover {
    opacity: 0.8;
}

.footer-v1__links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-left: auto;
}

.footer-v1__col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-v1__col h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-v1__col a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
}

.footer-v1__col a:hover {
    color: var(--color-meteor);
}

.footer-v1__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

.footer-v1__bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-v1__bottom a:hover {
    color: var(--color-meteor);
}

@media (max-width: 768px) {
    .footer-v1 {
        padding: 60px var(--hero-padding-x) 40px;
    }

    .footer-v1__container {
        align-items: center;
        text-align: center;
    }

    .footer-v1__content {
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .footer-v1__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-v1__contact-info {
        align-items: center;
    }

    .footer-v1__links {
        gap: 40px;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }

    .footer-v1__col {
        align-items: center;
        text-align: center;
    }

    .footer-v1__col h4,
    .footer-v1__col a {
        text-align: center;
    }

    .footer-v1__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}