/* =========================
   CONTACT HERO
========================= */

.contact-hero{
    position:relative;

    height:52vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:url('../images/pexels-pixabay-258154.jpg');

    background-size:cover;
    background-position:center;
}

.contact-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.80),
        rgba(0,0,0,0.35)
    );
}

.contact-hero-content{
    position:relative;
    z-index:5;

    max-width:620px;

    color:#fff;
}

.contact-hero-content span{
    display:inline-block;

    color:#ff9800;

    font-size:14px;
    font-weight:600;

    margin-bottom:14px;
}

.contact-hero-content h1{
    font-size:50px;
    font-weight:600;

    line-height:1.2;

    margin-bottom:18px;
}

.contact-hero-content p{
    font-size:15px;

    line-height:1.8;

    color:rgba(255,255,255,0.82);
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:80px 0;

    background:#f8f9fc;
}

/* =========================
   LEFT INFO
========================= */

.contact-info-box{
    background:#111827;

    border-radius:22px;

    padding:38px;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.contact-info-box::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff4d6d
    );

    border-radius:50%;

    top:-70px;
    right:-70px;

    opacity:0.12;
}

.contact-tag{
    display:inline-block;

    background:rgba(255,255,255,0.10);

    padding:8px 16px;

    border-radius:40px;

    font-size:12px;
    font-weight:600;

    margin-bottom:20px;
}

.contact-info-box h2{
    font-size:32px;
    font-weight:600;

    line-height:1.35;

    margin-bottom:16px;
}

.contact-info-box p{
    color:rgba(255,255,255,0.74);

    font-size:14px;

    line-height:1.8;
}

/* INFO ITEM */

.contact-info-item{
    display:flex;

    gap:16px;

    margin-top:28px;
}

.contact-icon{
    width:52px;
    height:52px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff4d6d
    );

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;

    flex-shrink:0;
}

.contact-info-item h4{
    font-size:18px;
    font-weight:600;

    margin-bottom:5px;
}

.contact-info-item p{
    font-size:14px;
    line-height:1.7;
}

/* =========================
   FORM
========================= */

.contact-form-box{
    background:#fff;

    border-radius:22px;

    padding:38px;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.form-top-design{
    position:absolute;

    width:150px;
    height:150px;

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff4d6d
    );

    border-radius:50%;

    top:-70px;
    right:-70px;

    opacity:0.07;
}

.contact-form-box h2{
    font-size:32px;
    font-weight:600;

    margin-bottom:30px;
}

/* INPUT */

.form-group label{
    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:600;

    color:#111;
}

.form-group input,
.form-group textarea{
    width:100%;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:14px 16px;

    font-size:14px;

    outline:none;

    transition:0.3s;

    background:#fafafa;
}

.form-group textarea{
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#ff9800;

    background:#fff;

    box-shadow:0 0 0 3px rgba(255,152,0,0.10);
}

/* BUTTON */

.contact-submit-btn{
    border:none;

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    color:#fff;

    padding:14px 26px;

    border-radius:14px;

    font-size:15px;
    font-weight:600;

    display:inline-flex;
    align-items:center;
    gap:10px;

    transition:0.35s;
}

.contact-submit-btn:hover{
    transform:translateY(-3px);

    box-shadow:0 12px 24px rgba(37,211,102,0.20);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .contact-hero{
        height:46vh;
    }

    .contact-hero-content h1{
        font-size:40px;
    }

    .contact-info-box h2,
    .contact-form-box h2{
        font-size:28px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .contact-hero{
        height:42vh;
    }

    .contact-hero-content{
        text-align:center;
    }

    .contact-hero-content span{
        font-size:13px;
    }

    .contact-hero-content h1{
        font-size:30px;

        line-height:1.3;
    }

    .contact-hero-content p{
        font-size:14px;
    }

    .contact-section{
        padding:60px 0;
    }

    .contact-info-box,
    .contact-form-box{
        padding:24px;

        border-radius:18px;
    }

    .contact-info-box h2,
    .contact-form-box h2{
        font-size:24px;
    }

    .contact-info-item{
        gap:14px;

        margin-top:22px;
    }

    .contact-icon{
        width:46px;
        height:46px;

        font-size:16px;
    }

    .contact-info-item h4{
        font-size:16px;
    }

    .form-group input,
    .form-group textarea{
        padding:13px 14px;

        font-size:13px;
    }

    .contact-submit-btn{
        width:100%;

        justify-content:center;

        font-size:14px;
    }

}