/* =========================================================
   SHSRII TRAVELS - COMPLETE FOOTER CSS
========================================================= */


/* =========================================================
   MAIN FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    padding: 70px 0 0;

    background: #101828;

    color: #98a2b3;
}


/* =========================================================
   FOOTER MAIN
   BRAND + 3 COLUMNS
========================================================= */

.footer-main {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.65fr
        1fr
        1fr
        1fr;

    gap: 42px;

    padding-bottom: 55px;
}


/* =========================================================
   BRAND COLUMN
========================================================= */

.footer-brand-col {
    min-width: 0;
}

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    text-decoration: none;
}


/* Logo Mark */

.footer-brand-mark {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #F59E0B;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 800;

    box-shadow:
        0 8px 22px rgba(245, 158, 11, 0.25);
}


/* Brand Text */

.footer-brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.footer-brand-text strong {
    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: .8px;
}


.footer-brand-text small {
    margin-top: 5px;

    color: #F59E0B;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: #98a2b3;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 25px;
}


.footer-contact-item {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #98a2b3;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-contact-item:hover {
    color: #ffffff;

    transform: translateX(3px);
}


.footer-contact-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 10px;

    background: rgba(255,255,255,.04);

    color: #F59E0B;

    font-size: 15px;

    transition:
        background .25s ease,
        color .25s ease;
}


.footer-contact-item:hover .footer-contact-icon {
    background: #D97706;

    color: #ffffff;
}


.footer-contact-item > span:last-child {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


.footer-contact-item small {
    margin-bottom: 2px;

    color: #667085;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.footer-contact-item strong {
    color: #d0d5dd;

    font-size: 12px;

    font-weight: 500;

    word-break: break-word;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-social {
    margin-top: 5px;
}


.footer-social-title {
    display: block;

    margin-bottom: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


.footer-social-links {
    display: flex;

    align-items: center;

    gap: 9px;
}


.footer-social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 10px;

    background: rgba(255,255,255,.04);

    color: #98a2b3;

    font-size: 15px;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.footer-social-links a:hover {
    transform: translateY(-4px);

    background: #F59E0B;

    border-color: #F59E0B;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(245,158,11,.25);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}


/* Heading */

.footer-column-title {
    position: relative;

    display: flex;

    align-items: center;

    gap: 9px;

    margin: 3px 0 21px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 700;
}


/* Heading underline */

.footer-column-title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 28px;

    height: 2px;

    border-radius: 10px;

    background: #F59E0B;
}


/* Heading icon */

.footer-heading-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(245,158,11,.10);

    color: #F59E0B;
}


.footer-heading-icon svg {
    width: 17px;

    height: 17px;

    display: block;
}


/* =========================================================
   LINKS
========================================================= */

.footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-links li {
    margin: 0;

    padding: 0;
}


.footer-links a {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 6px 0;

    color: #98a2b3;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-links a i {
    color: #F59E0B;

    font-size: 10px;

    flex: 0 0 auto;

    transition:
        transform .25s ease;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TRAVEL SERVICE LINKS
========================================================= */

.footer-service-links a {
    font-size: 14px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom-wrap {
    width: 100%;

    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-copy {
    color: #667085;

    font-size: 11px;

    line-height: 1.5;
}


.footer-legal {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    color: #667085;

    font-size: 11px;
}


.footer-legal a {
    color: #98a2b3;

    text-decoration: none;

    transition: color .25s ease;
}


.footer-legal a:hover {
    color: #ffffff;
}


.footer-legal span {
    color: #475467;
}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-contact-buttons {
    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 99990;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.floating-contact-btn {
    position: relative;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 22px;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(16,24,40,.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.04);

    color: #ffffff;

    box-shadow:
        0 15px 32px rgba(16,24,40,.28);
}


/* Chat */

.floating-chat {
    background: #F59E0B;
}


/* WhatsApp */

.floating-whatsapp {
    background: #25D366;
}


.floating-whatsapp:hover {
    background: #20bd5a;
}


/* =========================================================
   FLOATING TOOLTIP
========================================================= */

.floating-tooltip {
    position: absolute;

    right: calc(100% + 11px);

    top: 50%;

    transform:
        translateY(-50%)
        translateX(5px);

    white-space: nowrap;

    padding: 8px 11px;

    border-radius: 7px;

    background: #101828;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}


.floating-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;

    top: 50%;

    width: 9px;

    height: 9px;

    background: #101828;

    transform:
        translateY(-50%)
        rotate(45deg);
}


.floating-contact-btn:hover .floating-tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================================
   LARGE TABLET
   BRAND FULL WIDTH
========================================================= */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns:
            1fr
            1fr
            1fr;

        gap: 38px;
    }


    .footer-brand-col {
        grid-column: 1 / -1;
    }


    .footer-description {
        max-width: 650px;
    }
}


/* =========================================================
   TABLET
   2 COLUMNS
========================================================= */

@media (max-width: 800px) {

    .site-footer {
        padding-top: 55px;
    }


    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 28px;

        padding-bottom: 45px;
    }


    .footer-brand-col {
        grid-column: 1 / -1;
    }


    .footer-description {
        max-width: 100%;
    }
}


/* =========================================================
   MOBILE
   1 COLUMN
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding-top: 48px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 40px;
    }


    .footer-brand-col {
        grid-column: auto;
    }


    .footer-brand {
        margin-bottom: 17px;
    }


    .footer-description {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.75;
    }


    .footer-column-title {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .footer-links a {
        font-size: 14px;

        padding: 7px 0;
    }


    .footer-service-links a {
        font-size: 14px;
    }


    /* Bottom */

    .footer-bottom {
        min-height: auto;

        padding-top: 18px;

        padding-bottom: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    .footer-legal {
        flex-wrap: wrap;

        gap: 7px;

        font-size: 10px;
    }


    /* Floating buttons */

    .floating-contact-buttons {
        right: 14px;

        bottom: 14px;

        gap: 9px;
    }


    .floating-contact-btn {
        width: 46px;

        height: 46px;

        font-size: 19px;
    }


    .floating-tooltip {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        gap: 28px;
    }


    .footer-brand-mark {
        width: 44px;

        height: 44px;

        flex-basis: 44px;

        font-size: 20px;
    }


    .footer-brand-text strong {
        font-size: 18px;
    }


    .footer-contact-item strong {
        font-size: 11px;
    }


    .floating-contact-buttons {
        right: 10px;

        bottom: 10px;
    }


    .floating-contact-btn {
        width: 43px;

        height: 43px;

        font-size: 18px;
    }
}