/* ==========================================================
   ESCAPE TOURISMS — SITE FOOTER
========================================================== */

.siteFooter {

    position: relative;
    background: #07211E;
    color: rgba(255, 255, 255, .82);
    padding: 64px 6vw 0;
    overflow: hidden;
}

.siteFooter::before {

    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 15% 0%, rgba(20, 184, 166, .18), transparent 70%),
        radial-gradient(500px 260px at 90% 10%, rgba(245, 158, 11, .10), transparent 70%);
    pointer-events: none;
}

.footerTop {

    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footerCol {
    min-width: 0;
}

.footerLogo {

    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.footerLogo img {
    border-radius: 12px;
}

.footerAbout {

    font-size: .9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .62);
    max-width: 34ch;
}

.footerSocial {

    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footerSocial a {

    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: var(--white);
    transition: var(--transition);
}

.footerSocial a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footerColHeading,
.footerColToggle {

    display: block;
    font-weight: 600;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: .02em;
}

.footerColToggle {

    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    padding: 0;
}

.footerColToggle i {
    display: none;
}

.footerColBody {

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerColBody a,
.footerContactLine {

    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .25s ease;
}

.footerColBody a:hover {
    color: var(--accent);
}

.footerContactLine i {
    width: 16px;
    color: var(--accent);
}

.footerBookBtn {

    margin-top: 12px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.footerBottom {

    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0 100px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.footerServiceArea {
    text-align: right;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 900px) {

    .footerTop {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .footerBrand {
        grid-column: 1 / -1;
    }

    .footerContactCol {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {

    .siteFooter {
        padding: 48px 6vw 0;
    }

    .footerTop {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footerCol:not(.footerContactCol) {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 16px 0;
    }

    .footerColToggle {
        cursor: pointer;
    }

    .footerColToggle i {
        display: inline-block;
        transition: transform .3s ease;
        color: rgba(255, 255, 255, .5);
    }

    .footerCol.isOpen .footerColToggle i {
        transform: rotate(180deg);
    }

    .footerColBody {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows .3s ease;
        gap: 0;
    }

    .footerColBody > * {
        min-height: 0;
        overflow: hidden;
    }

    .footerCol.isOpen .footerColBody {
        grid-template-rows: 1fr;
        margin-top: 12px;
        gap: 10px;
    }

    .footerBottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 110px;
    }

    .footerServiceArea {
        text-align: left;
    }
}
