/* =========================================
   TRAVEL FOOTER
========================================= */

.travel-footer {
    position: relative;
    background: #071a2f;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    padding: 75px 0 55px;
    position: relative;
    overflow: hidden;
}

/* Decorative Glow */

.footer-main::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.footer-main::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 132, 255, 0.05);
    border-radius: 50%;
    bottom: -160px;
    left: -100px;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    
    width: 92%;
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.25fr;

    gap: 55px;

    position: relative;
    z-index: 2;
}


/* =========================================
   COMPANY ABOUT
========================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;

    margin-bottom: 20px;
}

.logo-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f5d76e
    );

    color: #071a2f;

    border-radius: 12px;

    font-size: 22px;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.2);
}


.footer-about p {
    color: #aebdcc;
    font-size: 14px;
    line-height: 1.9;

    max-width: 390px;

    margin-bottom: 25px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    gap: 10px;
}

.social {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.social:hover {
    transform: translateY(-5px);

    background: #d4af37;

    border-color: #d4af37;

    color: #071a2f;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h3 {
    position: relative;

    font-size: 17px;
    font-weight: 600;

    margin: 0 0 25px;

    color: #ffffff;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 38px;
    height: 3px;

    background: #d4af37;

    margin-top: 10px;

    border-radius: 5px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #aebdcc;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a i {
    color: #d4af37;
    font-size: 11px;

    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}

.contact-icon {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(212, 175, 55, 0.1);

    color: #d4af37;

    font-size: 14px;
}

.contact-item span {
    display: block;

    color: #75899f;

    font-size: 11px;

    margin-bottom: 3px;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.contact-item a,
.contact-item p {
    color: #dce5ed;

    text-decoration: none;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;

    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4af37;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);

    background: rgba(0, 0, 0, 0.16);
}

.footer-bottom-container {
    width: 92%;
    max-width: 1250px;

    margin: auto;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #8293a5;

    font-size: 12px;
}

.footer-bottom strong {
    color: #d4af37;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-bottom-links a {
    color: #8293a5;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

.footer-bottom-links span {
    color: #43566b;
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #d4af37;

    color: #071a2f;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 999;
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);

    background: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 0 35px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-about p {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.8;
    }


    .footer-column h3 {
        margin-bottom: 20px;
    }


    .footer-bottom-container {
        width: 88%;

        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }


    .footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }


    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 42px;
        height: 42px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .footer-logo {
        font-size: 19px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-links a {
        font-size: 13px;
    }

}