/*=========================================
        LAPTOP REPAIR POPUP
=========================================*/
.popup-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
}
.popup-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:100;
    padding:10px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    opacity:1;
}
/* Left Side */
.popup-left{
    position:relative;
    color:#fff;
    background:linear-gradient(135deg,#0057d9,#5acf9e);
}

.popup-left::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../images/hero-bg.png") center/cover no-repeat;
    opacity:.08;
}

.popup-left-content{
    position:relative;
    z-index:2;
    height:100%;
    padding:40px 30px;
}

.popup-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    font-size:13px;
    backdrop-filter:blur(8px);
}

.popup-left h3{
    margin-top:18px;
    font-size:32px;
    font-weight:700;
}
.popup-left p{
    line-height:1.8;
    opacity:.95;
}
/* Google Review */
.google-review{
    display:flex;
    align-items:center;
    gap:10px;
    margin:30px 0;
    padding:14px 18px;
    /* background:rgba(255,255,255,.15); */
    background:white;
    border-radius:12px;
}
.google-review strong{
    font-size:16px;
}
.stars{
    margin-left:auto;
    color:#FFD43B;
    font-size:18px;
}
/* Form */
.popup-form{
    padding:40px;
}
.popup-form h4{
    margin-bottom:20px;
    font-weight:700;
}
.popup-form .form-control,
.popup-form .form-select{
    height:42px;
    padding:8px 14px;
    font-size:14px;
    border:1px solid #dee2e6;
    border-radius:10px;
    box-shadow:none;
}
.popup-form textarea{
    height:80px !important;
    padding:10px 14px;
    resize:none;
}
.popup-form .mb-3{
    margin-bottom:14px !important;
}
.popup-form .form-control:focus,
.popup-form .form-select:focus{
    border-color:#0057d9;
    box-shadow:0 0 0 .2rem rgba(0,87,217,.15);
}
/* Submit Button */
/* Submit Button */

.popup-submit-btn{

    width:100%;
    height:44px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    font-size:14px;
    font-weight:600;

    color:#fff;

    background:linear-gradient(135deg,#5acf9e 0%,#0057d9 100%);
    border:none;

    border-radius:10px;

    transition:opacity .2s ease;

    cursor:pointer;

}

/* Hover */

.popup-submit-btn:hover{

    opacity:.95;

}

/* Disabled */

.popup-submit-btn:disabled{

    opacity:.7;

    cursor:not-allowed;

}

/* Remove Bootstrap Effects */

.popup-submit-btn:focus,
.popup-submit-btn:active{

    box-shadow:none !important;

    outline:none;

}
.popup-submit-btn:hover,
.popup-submit-btn:focus,
.popup-submit-btn:active{
    color:#fff !important;
   background:linear-gradient(135deg,#5acf9e 0%,#0057d9 100%);
    border-color:#0057d9 !important;
    box-shadow:none !important;
    transform:none !important;
}
.popup-close{
    background-color:#fff;
    background-image:var(--bs-btn-close-bg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:12px;
}
/* ==========================
   Mobile Popup Improvements
========================== */
/* Popup Animation */
.modal.fade .modal-dialog{
    transform:scale(.85);
    transition:.35s ease;
}
.modal.show .modal-dialog{
    transform:scale(1);
}
/* Tablet */
@media (max-width:991px){
    .popup-left{
        display:none;
    }
    .popup-form{
        padding:30px;
    }
}
/* Mobile */
@media (max-width:768px){
    #repairPopup .modal-dialog{
        width:calc(100% - 20px) !important;
        max-width:420px !important;
        margin:10px auto !important;
    }
    #repairPopup .modal-content{
        width:100%;
        border-radius:18px;
    }
}
/* Small Mobile */
@media (max-width:480px){
    .popup-form{
        padding:20px;
    }
    .popup-form h4{
        font-size:22px;
    }
    .popup-close{
        top:12px;
        right:12px;
    }
}