/* =====================================================
   TRAVELKECH FOOTER
===================================================== */

.travel-footer {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #171a1c 0%,
            #202426 50%,
            #151719 100%
        );

    color: #ffffff;

    padding: 85px 0 0;

    margin-top: 90px;

    overflow: hidden;
}


/* subtle decoration */

.travel-footer::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(122, 183, 48, 0.05);

    top: -230px;
    right: -150px;

    pointer-events: none;
}



/* =====================================================
   BRAND
===================================================== */

.footer-brand {
    display: inline-block;

    font-size: 36px;
    font-weight: 700;

    color: #7AB730;

    text-decoration: none !important;

    margin-bottom: 20px;
}


.footer-brand span {
    color: #ffffff;
}


.footer-brand:hover {
    color: #7AB730;
}


.footer-description {
    max-width: 380px;

    color: #aeb2b4;

    font-size: 13.5px;

    line-height: 1.9;

    margin-bottom: 25px;
}



/* =====================================================
   TITLES
===================================================== */

.footer-title {
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 26px;

    position: relative;
}


.footer-title::after {
    content: "";

    display: block;

    width: 32px;
    height: 2px;

    background: #7AB730;

    margin-top: 10px;

    border-radius: 10px;
}



/* =====================================================
   SOCIAL MEDIA
===================================================== */

.footer-social {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    font-size: 15px;

    text-decoration: none !important;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.footer-social a:hover {
    transform: translateY(-4px);

    background: #7AB730;

    border-color: #7AB730;

    color: #ffffff;
}



/* =====================================================
   LINKS
===================================================== */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.footer-links a {
    position: relative;

    color: #aeb2b4;

    font-size: 13px;

    text-decoration: none !important;

    padding-left: 15px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.footer-links a::before {
    content: "›";

    position: absolute;

    left: 0;

    color: #7AB730;

    font-size: 18px;

    line-height: 14px;
}


.footer-links a:hover {
    color: #ffffff;

    padding-left: 20px;
}



/* =====================================================
   CONTACT
===================================================== */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;
}


.footer-contact-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7AB730;

    background:
        rgba(122, 183, 48, 0.12);

    font-size: 14px;
}


.footer-contact-label {
    display: block;

    color: #777d80;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 3px;
}


.footer-contact-item p,
.footer-contact-item a {
    margin: 0;

    color: #d0d3d4;

    font-size: 13px;

    text-decoration: none;
}


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



/* =====================================================
   WHATSAPP CTA
===================================================== */

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    padding: 12px 20px;

    border-radius: 8px;

    background: #25D366;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;

    box-shadow:
        0 7px 20px rgba(37, 211, 102, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-whatsapp i {
    font-size: 18px;
}


.footer-whatsapp:hover {
    background: #1fbd5a;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.25);
}



/* =====================================================
   COLLABORATORS
===================================================== */

.footer-partners {
    margin-top: 25px;

    padding: 35px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-partners-header {
    text-align: center;

    margin-bottom: 28px;
}


.footer-partners-header span {
    display: block;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.footer-partners-header p {
    margin: 0;

    color: #777d80;

    font-size: 12px;
}


.footer-partners-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;

    max-width: 900px;

    margin: auto;
}



/* partner logo */

.footer-partner {
    height: 75px;

    padding: 15px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-partner img {
    display: block;

    width: 135px;
    height: 42px;

    max-width: 100%;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.72;

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.footer-partner:hover {
    transform: translateY(-4px);

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}


.footer-partner:hover img {
    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);
}



/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #777d80;

    font-size: 12px;
}


.footer-bottom a {
    color: #aeb2b4;

    font-weight: 600;

    text-decoration: none;
}


.footer-bottom a:hover {
    color: #7AB730;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .travel-footer {
        padding-top: 65px;
    }


    .footer-partners-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}



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

@media (max-width: 576px) {

    .travel-footer {
        padding-top: 55px;

        margin-top: 60px;
    }


    .footer-brand {
        font-size: 30px;
    }


    .footer-title {
        margin-bottom: 20px;
    }


    .footer-partners {
        padding: 30px 0;
    }


    .footer-partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .footer-partner {
        height: 65px;

        padding: 12px 8px;
    }


    .footer-partner img {
        width: 105px;
        height: 34px;
    }


    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 22px 0;
    }

}



/* =====================================================
   VERY SMALL
===================================================== */

@media (max-width: 350px) {

    .footer-partners-grid {
        grid-template-columns: 1fr;
    }

}