/* =========================================================
   LAUNDRYCARE — PUBLIC FOOTER
   ========================================================= */

.public-footer {
    position: relative;
    overflow: hidden;
    color: #e8f1ff;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(14, 165, 233, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(249, 115, 22, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071a2d 0%,
            #0b2942 48%,
            #102f46 100%
        );
}


/* =========================================================
   DECORATIVE BACKGROUND
   ========================================================= */

.public-footer::before,
.public-footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(2px);
}

.public-footer::before {
    width: 320px;
    height: 320px;
    top: -180px;
    right: -100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.025),
        0 0 0 70px rgba(255, 255, 255, 0.018);
}

.public-footer::after {
    width: 220px;
    height: 220px;
    bottom: -130px;
    left: -80px;
    background: rgba(14, 165, 233, 0.07);
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-main {
    position: relative;
    z-index: 1;
    padding: 82px 0 65px;
}

.footer-main .container {
    position: relative;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;
    text-decoration: none;

    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.footer-brand:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0ea5e9,
            #2563eb
        );

    box-shadow:
        0 10px 25px rgba(14, 165, 233, 0.25);
}

.footer-brand-mark i {
    font-size: 1.15rem;
}

.footer-brand-name {
    color: #ffffff;
}

.footer-description {
    max-width: 410px;

    margin: 22px 0 25px;

    color: rgba(226, 238, 249, 0.72);

    font-size: 0.95rem;
    line-height: 1.85;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #dceafa;
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    color: #38bdf8;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-item small {
    display: block;

    margin-bottom: 2px;

    color: rgba(226, 238, 249, 0.52);

    font-size: 0.7rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-contact-item strong {
    display: block;

    color: #ffffff;

    font-size: 0.88rem;
    font-weight: 600;
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    color: #dceafa;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.065);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0ea5e9,
            #2563eb
        );

    border-color: transparent;

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(14, 165, 233, 0.22);
}


/* =========================================================
   FOOTER TITLES
   ========================================================= */

.footer-title {
    position: relative;

    display: inline-block;

    margin: 5px 0 24px;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 28px;
    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #fb923c
        );
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(226, 238, 249, 0.68);

    font-size: 0.9rem;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a i {
    color: #38bdf8;

    font-size: 0.62rem;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   SUPPORT CARD
   ========================================================= */

.footer-support-card {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 25px;
    padding: 14px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.footer-support-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    border-radius: 13px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f97316,
            #fb923c
        );

    box-shadow:
        0 8px 20px rgba(249, 115, 22, 0.22);
}

.footer-support-card strong {
    display: block;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;
}

.footer-support-card span {
    display: block;

    margin-top: 3px;

    color: rgba(226, 238, 249, 0.58);

    font-size: 0.75rem;
}


/* =========================================================
   ADDRESS
   ========================================================= */

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 16px;

    color: rgba(226, 238, 249, 0.6);

    font-size: 0.78rem;
    line-height: 1.6;
}

.footer-address i {
    margin-top: 2px;
    color: #fb923c;
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.footer-cta {
    position: relative;
    z-index: 2;

    padding: 28px 0;

    background:
        linear-gradient(
            90deg,
            rgba(14, 165, 233, 0.13),
            rgba(249, 115, 22, 0.10)
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-cta-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #38bdf8;

    font-size: 0.7rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-cta h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(
        1.15rem,
        2vw,
        1.55rem
    );

    font-weight: 750;

    letter-spacing: -0.025em;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    flex: 0 0 auto;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 14px;

    color: #ffffff;
    text-decoration: none;

    font-size: 0.86rem;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #0ea5e9,
            #2563eb
        );

    box-shadow:
        0 12px 28px rgba(14, 165, 233, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-cta-button i {
    transition: transform 0.3s ease;
}

.footer-cta-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(14, 165, 233, 0.3);
}

.footer-cta-button:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
   ========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    background: rgba(2, 12, 23, 0.42);

    border-top:
        1px solid rgba(255, 255, 255, 0.055);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 72px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(226, 238, 249, 0.52);

    font-size: 0.78rem;
}

.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(226, 238, 249, 0.52);

    font-size: 0.76rem;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .footer-main {
        padding: 65px 0 50px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-title {
        margin-top: 0;
    }

    .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-button {
        width: auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-main .row {
        row-gap: 38px !important;
    }

    .footer-description {
        margin-top: 18px;

        font-size: 0.88rem;
        line-height: 1.75;
    }

    .footer-social {
        margin-top: 22px;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-cta {
        padding: 25px 0;
    }

    .footer-cta h3 {
        line-height: 1.35;
    }

    .footer-cta-button {
        width: 100%;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;

        padding: 20px 0;

        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .footer-main {
        padding-top: 45px;
    }

    .footer-brand {
        font-size: 1.35rem;
    }

    .footer-brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .footer-support-card {
        padding: 12px;
    }

    .footer-cta-button {
        min-height: 46px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .public-footer *,
    .public-footer *::before,
    .public-footer *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}