/* ===========================
   Popup Overlay
=========================== */

.spot-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:999999;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.spot-popup-overlay.show{
    opacity:1;
    visibility:visible;
}

body.popup-open{
    overflow:hidden;
}

/* ===========================
   Popup Box
=========================== */

.spot-popup{
    width:100%;
    max-width:950px;
    background:#fff;
    display:flex;
    align-items:stretch;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 80px rgba(0,0,0,.25);
    animation:popupScale .35s ease;
}

/* ===========================
   Left Image
=========================== */

.popup-left{
    width:45%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.popup-left img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/* ===========================
   Right Content
=========================== */

.popup-right{
    width:55%;
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.popup-right h2{
    font-size:34px;
    font-weight:700;
    margin:0 0 10px;
    color:#12395f;
}

.popup-right p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

/* ===========================
   Close Button
=========================== */

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    cursor:pointer;
    font-size:26px;
    transition:.3s;
    z-index:10;
}

.popup-close:hover{
    background:#22b7c7;
    color:#fff;
}

/* ===========================
   Contact Form 7
=========================== */

.popup-right .wpcf7{
    width:100%;
}

.popup-right .wpcf7-form{
    display:flex;
    flex-direction:column;
}

.popup-right .wpcf7-form p{
    margin:0 0 18px;
}

.popup-right .wpcf7 input[type=text],
.popup-right .wpcf7 input[type=email],
.popup-right .wpcf7 input[type=tel]{

    width:100%;
    height:56px;
    border:1px solid #dbe3ea;
    border-radius:10px;
    padding:0 18px;
    font-size:16px;
    box-sizing:border-box;
    transition:.3s;
}

.popup-right .wpcf7 input:focus{
    outline:none;
    border-color:#22b7c7;
}

.popup-right .wpcf7-submit{

    width:100%;
    height:56px;
    border:none;
    border-radius:10px;
    background:#22b7c7;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.popup-right .wpcf7-submit:hover{
    background:#118da3;
}

.popup-right .wpcf7-spinner{
    display:none;
}

.popup-right .wpcf7-response-output{
    margin-top:15px;
}

/* ===========================
   Animation
=========================== */

@keyframes popupScale{

    from{
        opacity:0;
        transform:scale(.85);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .spot-popup{

        max-width:760px;

    }

    .popup-left{

        width:40%;

    }

    .popup-right{

        width:60%;
        padding:30px;

    }

    .popup-right h2{

        font-size:28px;

    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

    .spot-popup-overlay{

        padding:15px;

    }

    .spot-popup{

        flex-direction:column;
        max-width:420px;
        max-height:92vh;
        overflow-y:auto;

    }

    .popup-left{

        width:100%;
        height:auto;

    }

    .popup-left img{

        width:100%;
        height:auto;
        display:block;
        object-fit:contain;

    }

    .popup-right{

        width:100%;
        padding:20px;

    }

    .popup-right h2{

        font-size:24px;
        line-height:1.3;

    }

    .popup-right p{

        font-size:14px;

    }

    .popup-right .wpcf7 input[type=text],
    .popup-right .wpcf7 input[type=email],
    .popup-right .wpcf7 input[type=tel]{

        height:48px;
        font-size:15px;

    }

    .popup-right .wpcf7-submit{

        height:50px;
        font-size:16px;

    }

    .popup-close{

        width:34px;
        height:34px;
        font-size:22px;
        top:10px;
        right:10px;

    }

}

/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

    .spot-popup-overlay{

        padding:10px;

    }

    .spot-popup{

        max-width:100%;
        border-radius:16px;

    }

    .popup-right{

        padding:18px;

    }

    .popup-right h2{

        font-size:22px;

    }

}