/* =========================================================
   AURORA WISATA — FOOTER FINAL
========================================================= */

.site-footer {
    position: relative;

    margin: 0;

    color: #ffffff;

    background: #101b13;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-inner {
    width: min(
        calc(100% - 40px),
        var(--aw-container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.85fr
        0.95fr
        1.15fr;

    gap: 58px;

    padding: 58px 0 50px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 15px;
}

.footer-logo img {
    display: block;

    width: 165px;
    height: auto;
}

.footer-tagline {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.5;
}

.footer-description {
    max-width: 370px;

    margin: 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;
}

.footer-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    font-size: 16px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    color: var(--aw-orange);

    background: rgba(255, 101, 0, 0.08);

    border-color: var(--aw-orange);

    transform: translateY(-2px);
}


/* =========================================================
   COLUMN
========================================================= */

.footer-column h3 {
    margin: 4px 0 8px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;
}

.footer-title-line {
    display: block;

    width: 30px;
    height: 2px;

    margin-bottom: 23px;

    background: var(--aw-orange);
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0;
    padding: 0;
}

.footer-column li a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.66);

    font-size: 13px;

    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column li a::before {
    content: "›";

    display: inline-block;

    margin-right: 8px;

    color: var(--aw-green);

    font-size: 16px;
    font-weight: 700;

    transition:
        transform 0.2s ease;
}

.footer-column li a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-column li a:hover::before {
    transform: translateX(2px);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    line-height: 1.7;
}

.footer-contact-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    color: var(--aw-orange);

    background: rgba(255, 101, 0, 0.08);

    border: 1px solid rgba(255, 101, 0, 0.18);

    border-radius: 9px;
}

.footer-contact-icon svg {
    width: 17px;
    height: 17px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.68);

    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--aw-orange);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    min-height: 48px;

    margin-top: 4px;

    padding: 7px 8px 7px 14px;

    color: #ffffff;

    background: var(--aw-orange);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(255, 101, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 101, 0, 0.28);
}

.footer-whatsapp-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    background: rgba(255, 255, 255, 0.16);

    border-radius: 50%;
}

.footer-whatsapp-icon svg {
    width: 19px;
    height: 19px;
}

.footer-whatsapp-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-left: auto;

    flex: 0 0 30px;

    background: rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    font-size: 16px;
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    width: min(
        calc(100% - 40px),
        var(--aw-container)
    );

    min-height: 70px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 12px;

    line-height: 1.5;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 18px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.60);

    font-size: 12px;

    line-height: 1.5;

    transition:
        color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--aw-orange);
}

.footer-legal-divider {
    width: 1px;
    height: 15px;

    background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .footer-inner {
        grid-template-columns:
            1.2fr 1fr 1fr;

        gap: 42px;

        padding: 50px 0 42px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 620px;
    }

    .footer-contact {
        grid-column: 3;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-inner {
        width: min(
            calc(100% - 32px),
            var(--aw-container)
        );

        grid-template-columns: 1fr;

        gap: 34px;

        padding: 42px 0 35px;
    }

    .footer-brand {
        grid-column: auto;

        max-width: none;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column h3 {
        margin-top: 0;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom-inner {
        width: min(
            calc(100% - 32px),
            var(--aw-container)
        );

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 10px;

        min-height: auto;

        padding: 18px 0;
    }

    .footer-legal {
        gap: 14px;
    }

}