    .icon_group {
    position: fixed;
    top: 45%;
    right: 1px;
    transform: translateY(-50%);
    transition: all 0.85s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon_items {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    #background: #bfa85d;
    overflow: hidden;
    margin: 6px 0;
    transition: all 0.5s ease;
    position: relative;
    order: 2;
    top: 98px;   
    
}
icon_items a span {
    width: 0%;
    white-space: nowrap;
    color: #000;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.85s ease;
    transform: translateX(130%);
    display: block;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
}

.construction_btn {
    width: 162px;
    position: absolute;
    right: -66px;
    transform: rotate(90deg);
    background: #f89521;
    transition: all 0.85s ease;
    z-index: 999;
    border-radius: 6px 6px 6px 6px;
    cursor: pointer;
    order: 1;
}
.construction_btn a {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 7px;
    text-transform: uppercase;
    overflow: hidden;
    font-weight: 700;
    transform: rotate(-180deg);

}

/* Popup (Scoped) */
.enquiry-popup-wrapper .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.enquiry-popup-wrapper .popup-box {
    width: 380px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.enquiry-popup-wrapper .popup-box h3 {
    margin-bottom: 15px;
}

.enquiry-popup-wrapper .popup-box input,
.enquiry-popup-wrapper .popup-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.enquiry-popup-wrapper .popup-box button {
    width: 100%;
    padding: 12px;
    background: #f89521;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.enquiry-popup-wrapper .close-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
}

.enquiry-popup-wrapper .thankyou-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
}

.enquiry-popup-wrapper .thankyou-box {
    width: 360px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.enquiry-popup-wrapper .thankyou-box h3 {
    color: #28a745;
    margin-bottom: 10px;
}

.enquiry-popup-wrapper .thankyou-box button {
    margin-top: 15px;
    padding: 10px 25px;
    background: #f89521;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}