/* ========================================
   CONTACT SECTION
======================================== */

#contact{
    background:#f8fafc;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */
#contact::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(37,99,235,0.06);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(40px);
}

/* ========================================
   SECTION TITLE
======================================== */

#contact .section-title{
    text-align:center;
    margin-bottom:60px;
}

#contact .section-title h2{
    font-size:2.7rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

#contact .section-title p{
    color:#64748b;
    font-size:1rem;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

/* ========================================
   CONTACT BOX
======================================== */

.contact-box{
    background:#ffffff;
    border-radius:28px;
    padding:55px;
    border:1px solid #e2e8f0;
    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

    position:relative;
    z-index:2;
}

/* ========================================
   FORM CONTROL
======================================== */

.contact-box .form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe2ea;
    padding:12px 18px;
    margin-bottom:20px;
    font-size:0.96rem;
    color:#0f172a;
    background:#fff;

    transition:0.3s ease;
    box-shadow:none !important;
}

/* TEXTAREA */

.contact-box textarea.form-control{
    height:auto;
    resize:none;
    min-height:160px;
    padding-top:15px;
}

/* PLACEHOLDER */

.contact-box .form-control::placeholder{
    color:#94a3b8;
}

/* FOCUS */

.contact-box .form-control:focus{
    border-color:#2563eb;

    box-shadow:
    0 0 0 4px rgba(37,99,235,0.10) !important;
}

/* ========================================
   BUTTON
======================================== */

.btn-submit{
    background:#2563eb;
    color:#ffffff;
    border:none;

    padding:15px 40px;
    border-radius:14px;

    font-size:1rem;
    font-weight:600;

    transition:0.35s ease;

    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-submit:hover{
    background:#1d4ed8;
    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(37,99,235,0.25);

    color:#fff;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:991px){

    #contact{
        padding:80px 0;
    }

    .contact-box{
        padding:40px 30px;
    }

    #contact .section-title h2{
        font-size:2.2rem;
    }
}

@media(max-width:576px){

    #contact{
        padding:70px 0;
    }

    .contact-box{
        padding:30px 20px;
        border-radius:20px;
    }

    #contact .section-title h2{
        font-size:1.9rem;
    }

    .btn-submit{
        width:100%;
    }
}