/* =========================
   WHATSAPP CHAT POPUP
========================= */

/* SAME LINE LIKE FIRST SCREEN */
.wa-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #eaeaea, #dcdcdc, #eaeaea);
    margin: 10px 0 12px;
}

/* MAIN BOX */
.wa-popup-box {
    width: 330px;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* CLOSE BUTTON */
.wa-close {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 35px;
    cursor: pointer;
    color: #888;
    padding: 10px;
}

/* MINIMIZE BUTTON */
.wa-minimize {
    position: absolute;
    right: 32px;
    top: 7px;
    font-size: 25px;
    cursor: pointer;
    color: #888;
    padding: 20px;
	
}

/* HOVER */
.wa-close:hover,
.wa-minimize:hover {
    color: #f15a00;
    transform: scale(1.2);
}

/* ICON */
.wa-icon {
    font-size: 28px;
    color: #25D366; /* keep green */
    margin-bottom: 5px;
}

/* SUPPORT NAME */
.support-name {
    color: #000 !important; /* 🔥 black */
    font-weight: 700;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* CHAT BUTTON */
.wa-chat-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #25D366, #1ebe5d); /* keep green */
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
    transition: .3s;
}

.wa-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, .45);
}

/* FLOATING WHATSAPP BUTTON */
.wa-floating-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #1ebe5d); /* keep green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.wa-floating-btn:hover {
    transform: scale(1.05);
}

/* USER SECTION */
.wa-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
}

.wa-user img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-user-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

/* TEAM PHOTOS */
.team-photos {
    display: flex;
}

.team-photos img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* SINGLE SUPPORT */
.single-support {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, .15),
        0 0 0 2px #f15a00;
}

/* TITLE */
#popupTitle {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
    color: #000; /* 🔥 black */
    letter-spacing: .3px;
}

/* TEXT */
#popupText {
    font-size: 14px;
    line-height: 1.6;
    color: #000; /* 🔥 black */
    margin-bottom: 16px;
}

/* POPUP ANIMATION */
@keyframes popupSlide {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ONLINE DOT */
.online-dot {
    background: #e8fff1;
    color: #25D366; /* 🔥 green */
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}

/* SUPPORT NAME */
#supportName {
    font-size: 16px;
    font-weight: 700;
    color: #000; /* 🔥 black */
}

/* TYPING INDICATOR */
.typing-indicator {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #f15a00;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: .2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: .4s;
}

/* TYPING ANIMATION */
@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: .3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===============================
   OPTIONS FINAL IMPROVED UI
=============================== */

.wa-popup .wa-option {
    background: #fff5ef !important;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000 !important;
    transition: all .2s ease;
}

.wa-popup .wa-option i {
    color: #f15a00 !important;
    margin-right: 6px;
    font-size: 13px;
}

.wa-popup .wa-option::after {
    content: "→";
    font-size: 16px;
    font-weight: bold;
    color: #f15a00;
    transition: .1s;
}

.wa-popup .wa-option:hover {
    background: #f15a00 !important;
    color: #fff !important;
    transform: translateX(3px);
}

.wa-popup .wa-option:hover i {
    color: #fff !important;
}

.wa-popup .wa-option:hover::after {
    color: #fff;
    transform: translateX(4px);
}

/* TOP USER */
.wa-top-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
	font-size: 18px;
}

.wa-top-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* HEADING */
.wa-heading {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000; /* 🔥 black */
}




























/* ===============================
   PREMIUM FOOTER DESIGN
================================ */

.footer-section {
    background: linear-gradient(180deg, #f15a00 0%, #d84300 60%, #bf360c 100%); /* 🔥 updated */
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
    color: #fff;
    padding: 10px 10px 5px 10px;
    font-size: 14px;
    margin-top: 40px;
}

.footer-col {
    padding-right: 25px;
    padding-left: 10px;
    position: relative;
    padding-top: 5px;
    padding-bottom: -10px !important;
}

.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-section h5 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h5::before {
    content: "";
    width: 3px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    display: inline-block;
    margin-right: 8px;
}

.footer-links {
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 8px;
    color: #ffffff;
    transition: all .3s ease;
}

.footer-section p,
.footer-section address {
    opacity: 0.95;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    transition: all .35s ease;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-social a i {
    color: #f15a00; /* 🔥 updated */
    transition: .3s;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
}

/* SOCIAL COLORS (UNCHANGED BRANDS) */
.footer-social a:nth-child(1):hover {
    background: #FF0000;
}
.footer-social a:nth-child(1):hover i {
    color: #ffffff;
}

.footer-social a:nth-child(2):hover {
    background: #1877F2;
}
.footer-social a:nth-child(2):hover i {
    color: #ffffff;
}

.footer-social a:nth-child(3):hover {
    background: #E4405F;
}
.footer-social a:nth-child(3):hover i {
    color: #ffffff;
}

.footer-social a:nth-child(4):hover {
    background: #25D366;
}
.footer-social a:nth-child(4):hover i {
    color: #ffffff;
}

.payment-icons {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-icons img {
    max-width: 140px;
    width: 100%;
}

.footer-trust {
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-bottom-orange {
    background: #bf360c; /* 🔥 updated */
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    padding: 6px 0 !important;
    display: flex;
    align-items: center;
}

.footer-bottom-orange .btn {
    border-radius: 20px;
    padding: 4px 12px;
    font-weight: 600;
    margin-left: 0 !important;
    background: #f15a00; /* 🔥 updated */
    color: #fff;
    border: none;
    transition: all .3s ease;
    font-size: 12px;
}

.footer-bottom-orange .btn:hover {
    background: #d84300; /* 🔥 updated */
    transform: translateY(-2px);
}

.footer-links .extra-link {
    display: none;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-more-btn {
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.footer-bottom-orange .copyright-text {
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.footer-bottom-orange a {
    text-decoration: none !important;
    color: #ffffff;
    font-weight: 500;
}

/* =========================
   DESKTOP FIX
========================= */

.footer-bottom-orange .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   POPUP BASE
========================= */

.wa-popup {
    position: fixed;
    bottom: 90px;
    right: 25px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ACTIVE */
.wa-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}








/* =========================
   MOBILE FIXES (ALL IN ONE)
========================= */

@media (max-width:768px) {

    /* =========================
       WHATSAPP
    ========================= */

    .wa-floating-btn {
        position: fixed;
        bottom: 60px;
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        z-index: 9999;
    }

    .wa-popup {
        position: fixed;
        bottom: 110px;

        left: 50%;
        right: auto;

        transform: translateX(-50%) translateY(15px);

        width: 100%;
        display: flex;
        justify-content: center;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        will-change: transform, opacity;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .wa-popup.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .wa-popup-box {
        width: 92%;
        max-width: 375px;
        margin: 0 auto;
        padding: 35px;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        animation: popupFade .25s ease;
        transition: transform 0.25s ease;
    }

    .wa-popup.active .wa-popup-box {
        transform: translateY(0);
    }

    

    #popupTitle {
        font-size: 18px;
        margin-bottom: 5px;
        color: #000; /* 🔥 added */
    }

    #popupText {
        font-size: 16px;
        margin-bottom: 10px;
        color: #000; /* 🔥 added */
    }

    .wa-chat-btn {
        padding: 10px;
        font-size: 15px;
        border-radius: 8px;
    }

    .wa-popup .wa-option {
        padding:12px 14px;
        font-size: 17px;
        border-radius: 8px;
    }

    /* =========================
       FOOTER DESIGN
    ========================= */

    .footer-section {
        padding-bottom: 0 !important;
    }

    .footer-col:not(:last-child)::after {
        display: none;
    }

    .footer-col {
        margin-bottom: 10px !important;
    }

    .footer-section h5 {
        font-size: 14px;
        margin-bottom: 8px !important;
    }

    .footer-section p,
    .footer-section address {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-links li {
        margin-bottom: 6px !important;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 10px;
    }

    .payment-icons {
        max-width: 180px;
        padding: 6px;
        margin: 6px auto;
        border-radius: 10px;
    }

    .payment-icons img {
        width: 100%;
        height: auto;
        display: block;
    }

    .footer-trust {
        font-size: 12px;
        margin-top: 6px !important;
    }

    /* =========================
       🔥 IMPORTANT: ORDER FIX
    ========================= */

    .footer-bottom-orange .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Agency TOP */
    .footer-bottom-orange .col-sm-6.text-sm-end {
        order: 1 !important;
        text-align: center !important;
        margin-bottom: 6px;
    }

    /* Copyright BOTTOM */
    .footer-bottom-orange .col-sm-6:first-child {
        order: 2 !important;
        text-align: center !important;
    }

    body {
        padding-bottom: 0 !important;
    }

    .footer-section {
        margin-bottom: 0 !important;
    }

    .footer-bottom-orange {
        margin-bottom: 0 !important;
        padding-bottom: 55px !important;

        justify-content: center;

        gap: 10px;
        font-size: 13px;
    }

    .review + .footer-trust {
        text-align: left !important;
    }

    .footer-bottom-orange .col-12.col-sm-6.text-sm-end {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .footer-bottom-orange .copyright-text {
        width: 100%;
        text-align: center;
    }

    /* =========================
       MOBILE BOTTOM BAR
    ========================= */

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg,#f15a00 0%,#d84300 100%); /* 🔥 updated */
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        z-index: 9999;
        align-items: center;
        padding-left: 35px;
        padding-right: 35px;
    }

    .mobile-bottom-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bottom-btn i {
        font-size: 16px;
        margin-bottom: 1px;
        color: #fff; /* 🔥 added */
    }

    .bottom-btn span {
        font-size: 11px;
        font-weight: 500;
        color: #fff; /* 🔥 added */
    }

    .bottom-btn:active {
        transform: scale(0.95);
    }

    /* =========================
       ANIMATION
    ========================= */

    @keyframes popupFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

}