﻿/* =========================================
   FOOTER FOUNDATION
========================================= */

.footer {
    background: linear-gradient(135deg,#5c4fa3,#6e60c8);
    color: #ffffff;
    margin-top: 40px;
}

.footer-wrap {
    padding: 28px 0 12px;
}

/* =========================================
   BRAND / LOGO
========================================= */

.footer-logo {
    margin-bottom: 8px;
}

    .footer-logo img {
        height: 36px;
    }

/* Brand title (if used instead of logo) */

.footer-brand {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 6px;
    color: #ffffff;
}

/* =========================================
   TEXT
========================================= */

.footer-infor {
    max-width: 420px;
}

    .footer-infor p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 4px;
        color: #ffffff;
    }

/* =========================================
   CONTACT INFO
========================================= */

.footer-info {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

    .footer-info li {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 4px;
        font-size: 13px;
        color: #ffffff;
    }

    .footer-info p {
        margin: 0;
        color: #ffffff;
    }

    .footer-info i {
        font-size: 14px;
        color: #ffffff;
    }

/* =========================================
   SOCIAL ICONS
========================================= */

.tf-social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

    .tf-social-icon li a {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255,255,255,.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tf-social-icon i {
        font-size: 14px;
        color: #ffffff;
    }

    /* Remove hover effects */

    .tf-social-icon li a:hover {
        background: rgba(255,255,255,.18);
        color: #ffffff;
        transform: none;
    }

/* =========================================
   LINKS
========================================= */

.footer a {
    color: #ffffff;
    text-decoration: none;
}

    .footer a:hover {
        color: #ffffff;
    }

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 8px 0;
}

.footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .text-caption-1 {
    font-size: 12px;
    margin: 0;
    color: #ffffff;
}

/* =========================================
   PAYMENT METHODS
========================================= */

.tf-payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .tf-payment ul {
        list-style: none;
        display: flex;
        gap: 6px;
        padding: 0;
        margin: 0;
    }

    .tf-payment img {
        height: 22px;
        background: #ffffff;
        padding: 2px 6px;
        border-radius: 4px;
    }

/* =========================================
   MOBILE OPTIMIZATION
========================================= */

@media (max-width:768px) {

    .footer-wrap {
        padding: 20px 0 8px;
    }

    .footer-infor {
        text-align: center;
        margin: auto;
    }

    .footer-info li {
        justify-content: center;
    }

    .tf-social-icon {
        justify-content: center;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .tf-payment {
        justify-content: center;
    }
}
/* Footer text color fix */

.footer .footer-infor p,
.footer .footer-info p,
.footer .footer-info li,
.footer .footer-info i,
.footer .footer-infor a {
    color: #ffffff !important;
}

/* remove opacity that makes text look faded */
.footer .footer-infor p,
.footer .footer-info p {
    opacity: 1 !important;
}

/* ensure icons also stay white */
.footer .footer-info i {
    color: #ffffff !important;
}