/* BUTTON GROUP */
.acf-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* VIEW DETAILS BUTTON */
.acf-open-popup {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #F43B3B;
    color: #fff;
    font-weight: 600;
}
.acf-open-popup:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #F43B3B !important;
}

/* INQUIRE NOW BUTTON */
.acf-inquire-btn {
    padding: 7px 14px;
    font-size: 12px;
    background: #2F3A4A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.acf-inquire-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #2F3A4A !important;

}

/* POPUP OVERLAY (BLUR) */
#acfPopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* POPUP CARD */
.acf-popup-box {
    background: #ffffff;
    max-width: 480px;
    width: 92%;
    padding: 40px 28px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 35px 70px rgba(0,0,0,0.3);
    animation: popupFade 0.35s ease;
}

/* ROUND LOGO */
.acf-popup-box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: -80px auto 16px;
    display: block;
    background: #ffffff;
    border: 6px solid #ffffff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* TITLE */
.acf-popup-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 14px 0 16px;
    color: #222;
}

/* CONTENT */
#acfPopupContent p {
    font-size: 15px;
    margin: 8px 0;
    color: #555;
    font-weight: 500;
}

/* VIEW MORE DETAILS BUTTON */
.acf-view-more {
    display: block;
    margin-top: 24px;
    padding: 14px 0;
    background: #F43B3B;
    color: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: 2px solid #F43B3B;
    transition: all 0.25s ease;
}

.acf-view-more:hover {
    background: #ffffff;
    color: #000000;
    border-color: #F43B3B;
}

/* CLOSE BUTTON */
.acf-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.acf-close:hover {
    color: #000;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.84);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
