/* ===== MAIN FOOTER ===== */

.main-footer {
    width: 100%;
    background: linear-gradient(90deg,#742e04,#9b3d08);
    color: #fff;
    padding: 16px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 4px solid #ffcc00;
}

/* ===== LEFT SIDE ===== */

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 50%;
    line-height: 1.6;
}

    .footer-left i {
        font-size: 24px;
        color: #ffcc00;
    }

/* ===== RIGHT SIDE ===== */

.footer-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-info i {
        width: 42px;
        height: 42px;
        background: #ffcc00;
        color: #742e04;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 17px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .footer-info small {
        display: block;
        color: #ffd27a;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .footer-info strong {
        display: block;
        color: #fff;
        font-size: 15px;
        margin-top: 2px;
    }

/* ===== MOBILE VIEW ===== */

@media(max-width:991px) {

    .main-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        max-width: 100%;
        justify-content: center;
    }

    .footer-right {
        justify-content: center;
        gap: 18px;
    }
}

@media(max-width:576px) {

    .footer-info {
        width: 100%;
        justify-content: center;
    }
}



/*===========================Modalll=====*/
.support-modal {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    animation: popupZoom 0.4s ease;
}

.support-modal .modal-header {
    background: linear-gradient(135deg, #742e04, #a94708);
    color: #fff;
    border-bottom: none;
    padding: 18px 22px;
}

.support-modal .modal-title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .support-modal .modal-title i {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

.support-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.support-modal .modal-body {
    padding: 35px 25px;
    text-align: center;
}

.support-message {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.7;
    margin-bottom: 25px;
}

.support-footer {
    font-size: 12px;
    color: #777;
    background: #f8f8f8;
    padding: 12px;
    border-radius: 12px;
}

.support-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

    .support-icon i {
        font-size: 42px;
        color: #742e04;
    }

@keyframes popupZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media(max-width:768px) {

    .support-modal .modal-title {
        font-size: 14px;
    }

    .support-message {
        font-size: 12px;
    }

    .support-icon {
        width: 75px;
        height: 75px;
    }

        .support-icon i {
            font-size: 34px;
        }
}

