/* LEFT FLOATING */
.floating-iconss{
    position:fixed;
    left:0px;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.floating-iconss .icons{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:8px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s ease;
    text-decoration:none;
}

.floating-iconss .icons img{
    width:24px;
    height:24px;
}

.floating-iconss .icons span{
    position:absolute;
    left:60px;
    background:#111;
    color:#fff;
    padding:8px 14px;
    border-radius:6px;
    font-size:13px;
    font-weight:500;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.floating-iconss .icons:hover{
    width:55px;
}

.floating-iconss .icons:hover span{
    opacity:1;
    visibility:visible;
}

.mail-icons{
    border-left:4px solid #ea4335;
}

.whatsapp-icons{
    border-left:4px solid #25d366;
}

.call-icons{
    border-left:4px solid #0d6efd;
}


/* RIGHT SOCIAL */
.social-floating-right{
    position:fixed;
    right:0px;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.social-floating-right .social-icons{
    width:50px;
    height:50px;
    background:#fff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.social-floating-right .social-icons:hover{
    transform:translateX(-5px);
}

.social-floating-right img{
    width:24px;
    height:24px;
}


html{
    width:100%;
    overflow-x:hidden;
    overflow-y:auto;
}

body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

/* MODAL */
body.modal-open{
    padding-right:0 !important;
    overflow-y:auto;
}

.modal{
    padding-right:0 !important;
}

/* MODAL BACKDROP */
.modal-backdrop.in{
    opacity:.75;
}

/* MODAL BOX */
.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    background:#fff;
}

/* HEADER */
.modal-header{
    background:linear-gradient(135deg,#1e293b,#0f172a);
    border:none;
    padding:18px 25px;
}

.modal-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

.modal-header .close{
    color:#fff !important;
    opacity:1;
    font-size:30px;
    text-shadow:none;
    margin-top:-5px;
}

/* BODY */
.modal-body{
    padding:30px;
    background:#fff;
}

/* INPUTS */
.modal-body .form-control{
    height:52px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    box-shadow:none;
    font-size:14px;
    transition:.3s;
}

.modal-body .form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.modal-body textarea.form-control{
    height:120px;
    resize:none;
    padding-top:12px;
}

/* SELECT */
.modal-body select.form-control{
    cursor:pointer;
}

/* BUTTONS */
.modal-body .btn{
    height:54px;
    border:none;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.3s;
}

.modal-body .btn-danger{
    background:linear-gradient(135deg,#ef4444,#dc2626);
}

.modal-body .btn-success{
    background:linear-gradient(135deg,#22c55e,#16a34a);
}

.modal-body .btn:hover{
    transform:translateY(-2px);
}

/* ANIMATION */
.modal.fade .modal-dialog{
    transform:scale(.8);
    transition:all .3s ease;
}

.modal.in .modal-dialog{
    transform:scale(1);
}

/* MOBILE */
@media(max-width:767px){

    .modal-dialog{
        width:95%;
        margin:20px auto;
    }

    .modal-body{
        padding:20px;
    }

    .modal-title{
        font-size:18px;
    }

    .modal-body .form-control,
    .modal-body .btn{
        height:48px;
    }
}

/* MOBILE */
@media(max-width:768px){

    .floating-iconss{
        left:10px;
    }

    .social-floating-right{
        right:10px;
    }

    .floating-iconss .icons,
    .social-floating-right .social-icons{
        width:45px;
        height:45px;
    }

    .floating-iconss .icons span{
        display:none;
    }

    .floating-iconss .icons img,
    .social-floating-right img{
        width:20px;
        height:20px;
    }
}
