
    /* =========================
MODERN BOOKING FORM DESIGN
========================= */

.section.section-sm.section-last{
    padding:70px 15px;
    background:
    linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
}

/* CARD */
.contact-card{
    max-width:1400px;
    margin:auto;
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(0,123,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.contact-card::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(0,180,216,.08);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

/* =========================
TITLE
========================= */

.title-classic{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.title-classic h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:#0f172a;
    letter-spacing:.5px;
}

.title-classic p{
    color:#64748b;
    max-width:700px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
}

/* =========================
FORM
========================= */

.modern-form{
    position:relative;
    z-index:2;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:700;
    color:#334155;
    letter-spacing:.3px;
}

/* INPUTS */

.form-input{
    width:100%;
    height:60px;
    border:2px solid #e2e8f0;
    border-radius:16px;
    padding:0 18px;
    font-size:15px;
    background:#fff;
    transition:.35s;
    outline:none;
}

select.form-input{
    cursor:pointer;
}

.form-input:hover{
    border-color:#93c5fd;
}

.form-input:focus{
    border-color:#2563eb;
    box-shadow:
    0 0 0 5px rgba(37,99,235,.12);
    transform:translateY(-2px);
}

/* DATE TIME */
input[type="date"].form-input,
input[type="time"].form-input{
    padding-right:15px;
}

/* TOTAL RATE */
.rate-display{
    background:#eff6ff;
    color:#2563eb;
    font-weight:800;
    font-size:18px;
}

/* =========================
CHECKBOX
========================= */

.checkbox-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
}

.checkbox-wrap input[type="checkbox"]{
    width:22px;
    height:22px;
    accent-color:#2563eb;
    cursor:pointer;
}

.checkbox-wrap label{
    margin:0;
    font-size:15px;
    color:#475569;
    cursor:pointer;
}

/* =========================
BUTTON
========================= */

.button-submit{
    width:100%;
    height:65px;
    border:none;
    border-radius:18px;
    margin-top:25px;
    font-size:18px;
    font-weight:800;
    letter-spacing:.5px;
    color:#fff;
    cursor:pointer;
    transition:.4s;
    background:
    linear-gradient(
    135deg,
    #2563eb,
    #0ea5e9
    );
    box-shadow:
    0 15px 35px rgba(37,99,235,.35);
}

.button-submit:hover{
    transform:translateY(-4px);
    box-shadow:
    0 25px 45px rgba(37,99,235,.45);
}

.button-submit:active{
    transform:scale(.98);
}

/* =========================
ANIMATION
========================= */

.form-group{
    animation:fadeUp .7s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .contact-card{
        padding:35px 25px;
    }

    .title-classic h3{
        font-size:34px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .section.section-sm.section-last{
        padding:40px 10px;
    }

    .contact-card{
        border-radius:25px;
        padding:25px 18px;
    }

    .title-classic h3{
        font-size:28px;
        line-height:1.3;
    }

    .title-classic p{
        font-size:14px;
    }

    .form-input{
        height:55px;
        font-size:14px;
    }

    .button-submit{
        height:60px;
        font-size:16px;
    }

    .checkbox-wrap{
        align-items:flex-start;
    }

}

/* =========================
SMALL PHONES
========================= */

@media(max-width:480px){

    .contact-card{
        padding:20px 15px;
    }

    .title-classic h3{
        font-size:24px;
    }

    .form-input{
        border-radius:14px;
    }

}
