/* ==========================
   FOOTER
========================== */

.footer {
    background: #171b34;
    color: #fff;
    padding-top: 80px;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================
   FOOTER GRID
========================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
    /* Increased gap */
    padding-bottom: 60px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.footer-col p {
    color: #d7d7d7;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ==========================
   LOGO
========================== */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 38px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #ff2d00;
}

/* ==========================
   SUPPORT BOX
========================== */

.support-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.support-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #ff2d00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.support-icon i {
    color: #fff;
    font-size: 20px;
}

.support-content {
    flex: 1;
}

.support-content span {
    display: block;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.support-content h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
}

.support-item:hover .support-icon {
    background: #ff4d26;
    transform: translateY(-3px);
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff2d00;
    transform: translateX(5px);
}

/* ==========================
   BOTTOM FOOTER
========================== */

.footer-bottom {
    background: #1f2445;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #ddd;
}

.footer-bottom span {
    color: #ff2d00;
    font-weight: 700;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-menu a {
    color: #ddd;
    text-decoration: none;
    white-space: nowrap;
    /* One line */
    transition: .3s;
}

.footer-menu a:hover {
    color: #ff2d00;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .support-box {
        gap: 18px;
    }

    .support-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .support-icon i {
        font-size: 18px;
    }

    .support-content h4 {
        font-size: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .support-box {
        align-items: center;
    }

    .support-item {
        width: 100%;
        max-width: 350px;
        text-align: left;
    }

    .support-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .support-icon i {
        font-size: 16px;
    }

    .support-content span {
        font-size: 12px;
    }

    .support-content h4 {
        font-size: 14px;
    }


    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }
}


.payment-disclaimer {
    background: #171b34;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 20px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.payment-icons img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: .3s;
}

.payment-icons img:hover {
    transform: translateY(-5px);
}

.disclaimer-text {
    max-width: 1100px;
    margin: auto;
}

.disclaimer-text p {
    color: #e4e4e4;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media(max-width:768px) {

    .payment-icons img {
        height: 38px;
    }

    .disclaimer-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}
