/* =========================================================
   TRANSPORT SERVICES — ULTRA PREMIUM FOOTER
   File: assets/css/footer.css
   ========================================================= */

.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #061b32;
    background: #dff3ff;
    font-family: inherit;
}

/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-main {
    width: 100%;
    padding: 72px 0 64px;
    background:
        radial-gradient(
            circle at 8% 25%,
            rgba(255,255,255,.72) 0,
            rgba(255,255,255,0) 34%
        ),
        linear-gradient(
            135deg,
            #eaf8ff 0%,
            #d9f1ff 48%,
            #cbeaff 100%
        );
    border-top: 1px solid rgba(0, 132, 210, .12);
    border-bottom: 1px solid rgba(0, 132, 210, .12);
}

.footer-main .container,
.footer-info .container,
.footer-bottom .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================================
   GRID
   ========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.35fr)
        minmax(170px, .85fr)
        minmax(220px, 1fr)
        minmax(220px, .95fr);

    gap: 52px;
    align-items: start;
}

/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #0798df,
        #0074c7
    );

    box-shadow:
        0 10px 24px rgba(0, 125, 205, .22);
}

.footer-brand-icon i {
    font-size: 17px;
}

.footer-brand-name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #061b32;
    letter-spacing: -.2px;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.footer-description {
    max-width: 315px;
    margin: 0 0 24px;

    color: #173e5e;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

/* =========================================================
   BOOK LINK
   ========================================================= */

.footer-book-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 26px;

    color: #0079c9;
    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-book-link span {
    font-size: 19px;
    line-height: 1;
}

.footer-book-link:hover {
    color: #005b9b;
    transform: translateX(3px);
}

/* =========================================================
   FEATURES
   ========================================================= */

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #123653;
    font-size: 13px;
    font-weight: 700;
}

.footer-feature-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #008bd3;
}

.footer-feature-icon i {
    font-size: 13px;
}

/* =========================================================
   FOOTER TITLES
   ========================================================= */

.footer-title {
    position: relative;

    margin: 0;
    padding: 0;

    color: #061b32;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.35px;
}

.footer-title-line {
    width: 34px;
    height: 3px;

    margin-top: 13px;
    margin-bottom: 23px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #008ed6,
        #22b6f2
    );
}

/* =========================================================
   QUICK / SERVICE LINKS
   ========================================================= */

.footer-links,
.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li,
.footer-legal-links li {
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #123b5b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-links a span,
.footer-legal-links a span {
    color: #008fd5;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
}

.footer-links a:hover,
.footer-legal-links a:hover {
    color: #0076bd;
    transform: translateX(3px);
}

/* =========================================================
   CONTACT / SECURITY CARD
   ========================================================= */

.footer-contact {
    min-width: 0;
}

.footer-security-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    width: 100%;
    max-width: 270px;

    margin: 0 0 24px;
    padding: 18px;

    background: rgba(255,255,255,.72);

    border: 1px solid rgba(0, 125, 205, .14);
    border-radius: 17px;

    box-shadow:
        0 14px 35px rgba(0, 95, 150, .09);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-security-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #008bd2;
    background: #e5f6ff;

    border-radius: 11px;
}

.footer-security-icon i {
    font-size: 14px;
}

.footer-security-content {
    min-width: 0;
}

.footer-security-content strong {
    display: block;

    margin-bottom: 7px;

    color: #061b32;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.footer-security-content p {
    margin: 0;

    color: #42647d;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
}

/* =========================================================
   LEGAL LINKS
   ========================================================= */

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-legal-links a {
    font-size: 12.5px;
}

/* =========================================================
   INFORMATION BAR
   ========================================================= */

.footer-info {
    width: 100%;
    padding: 30px 0;

    background: rgba(228, 246, 255, .92);

    border-bottom: 1px solid rgba(0, 125, 205, .12);
}

.footer-info-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    width: 100%;
}

.footer-info-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #0799df,
        #0078c9
    );

    border-radius: 11px;

    box-shadow:
        0 8px 20px rgba(0, 130, 205, .18);
}

.footer-info-icon i {
    font-size: 14px;
}

.footer-info-content {
    min-width: 0;
}

.footer-info-content h4 {
    margin: 2px 0 8px;

    color: #061b32;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}

.footer-info-content p {
    max-width: 1000px;

    margin: 0;

    color: #365a73;
    font-size: 12.5px;
    line-height: 1.7;
    font-weight: 500;
}

/* =========================================================
   BOTTOM BAR
   ========================================================= */

.footer-bottom {
    width: 100%;
    background: #d3edfc;
}

.footer-bottom-inner {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #294b63;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
}

.footer-copyright strong {
    color: #061b32;
    font-weight: 800;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;

    color: #557186;
    font-size: 12px;
}

.footer-bottom-links a {
    color: #294b63;
    font-weight: 600;
    text-decoration: none;

    transition: color .2s ease;
}

.footer-bottom-links a:hover {
    color: #007bc7;
}

.footer-bottom-links span {
    color: #8aa9bc;
}

/* =========================================================
   REMOVE SOCIAL ELEMENTS IF OLD HTML EXISTS
   ========================================================= */

.footer-social,
.social-links,
.footer-social-links {
    display: none !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .footer-main {
        padding: 58px 0 52px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 42px 34px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-security-card {
        max-width: 100%;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .footer-main {
        padding: 46px 0 42px;
    }

    .footer-main .container,
    .footer-info .container,
    .footer-bottom .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        margin-bottom: 16px;
    }

    .footer-description {
        max-width: 100%;
        font-size: 13.5px;
        line-height: 1.75;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links {
        gap: 13px;
    }

    .footer-security-card {
        max-width: 100%;
    }

    .footer-info {
        padding: 25px 0;
    }

    .footer-info-inner {
        gap: 12px;
    }

    .footer-info-content p {
        font-size: 12px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-links {
        gap: 7px;
        line-height: 1.8;
    }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .footer-main {
        padding: 40px 0 36px;
    }

    .footer-brand-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .footer-brand-name {
        font-size: 17px;
    }

    .footer-security-card {
        padding: 15px;
        border-radius: 14px;
    }

    .footer-info-inner {
        align-items: flex-start;
    }

    .footer-info-icon {
        width: 32px;
        min-width: 32px;
        height: 32px;
    }

    .footer-bottom-links {
        font-size: 11.5px;
    }

}