/*==================================================
                CONTACT SECTION
==================================================*/

#contact{
    background:#f8faff;
}

.navbar{
    background-color: #2563eb;
}
.section-padding{
    padding:100px 0;
}

.section-header{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}

.section-title{
    font-size:46px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*==================================================
                GRID
==================================================*/

.contact-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/*==================================================
                CONTACT INFO
==================================================*/

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#4f8df7);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:20px;
    flex-shrink:0;
}

.contact-details h3{
    font-size:20px;
    color:#222;
    margin-bottom:8px;
}

.contact-details p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/*==================================================
                SOCIAL
==================================================*/

.contact-social{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.contact-social h3{
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2563eb;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    transition:.35s;
}

.social-icon:hover{
    background:#1d4ed8;
    transform:translateY(-5px);
}

/*==================================================
                FORM
==================================================*/

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-form h3{
    font-size:28px;
    margin-bottom:30px;
}

.form-group{
    position:relative;
    margin-bottom:22px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px 18px 15px 50px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.form-group textarea{
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#2563eb;
}

.form-group i{
    position:absolute;
    left:18px;
    top:18px;
    color:#888;
    font-size:16px;
}

.error-message{
    color:#dc2626;
    font-size:13px;
    margin-top:6px;
}

/*==================================================
                FOOTER OF FORM
==================================================*/

.form-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

.form-check{
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-submit{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-submit:hover{
    background:#1d4ed8;
}

/*==================================================
                ALERT
==================================================*/

.form-alert{
    margin-top:25px;
    padding:15px;
    border-radius:10px;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.contact-container{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.section-title{
    font-size:36px;
}

.contact-info,
.contact-form{
    padding:30px;
}

.form-footer{
    flex-direction:column;
    align-items:stretch;
}

.btn-submit{
    width:100%;
}

.social-icons{
    justify-content:center;
}

}

@media(max-width:576px){

.section-padding{
    padding:70px 0;
}

.section-title{
    font-size:30px;
}

.contact-info,
.contact-form{
    padding:22px;
}

.contact-icon{
    width:48px;
    height:48px;
    font-size:18px;
}

.contact-details h3{
    font-size:18px;
}

.contact-details p{
    font-size:14px;
}

.contact-form h3{
    text-align:center;
    font-size:24px;
}

.form-group input,
.form-group textarea{
    font-size:14px;
}

}
/*==================================================
                PAGE BANNER
==================================================*/

.page-banner{
    position: relative;
    padding: 180px 20px 100px;
    background: linear-gradient(135deg,#2563eb,#4f8df7);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-banner::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -220px;
    right: -150px;
}

.page-banner::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -160px;
    left: -120px;
}

.page-banner .container{
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.page-banner span{
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-banner h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-banner p{
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width:992px){

.page-banner{
    padding:160px 20px 90px;
}

.page-banner h1{
    font-size:44px;
}

}

@media (max-width:768px){

.page-banner{
    padding:150px 20px 80px;
}

.page-banner h1{
    font-size:36px;
}

.page-banner p{
    font-size:16px;
}

}

@media (max-width:576px){

.page-banner{
    padding:140px 20px 70px;
}

.page-banner span{
    font-size:12px;
    padding:8px 18px;
}

.page-banner h1{
    font-size:30px;
}

.page-banner p{
    font-size:15px;
    line-height:1.7;
}

}
/*==================================================
                RESPONSIVE
==================================================*/

/* Large Tablets */
@media (max-width:1024px){

.contact-container{
    width:95%;
    gap:30px;
}

.page-banner{
    padding:160px 20px 90px;
}

.page-banner h1{
    font-size:clamp(36px,5vw,48px);
}

.page-banner p{
    font-size:16px;
}

}

/* Tablets */
@media (max-width:768px){

.section-padding{
    padding:80px 0;
}

.section-title{
    font-size:34px;
}

.section-subtitle{
    font-size:16px;
}

.contact-container{
    grid-template-columns:1fr;
    gap:35px;
}

.contact-info,
.contact-form{
    padding:30px;
}

.contact-item{
    gap:15px;
}

.contact-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.contact-details h3{
    font-size:18px;
}

.contact-details p{
    font-size:15px;
}

.form-footer{
    flex-direction:column;
    align-items:stretch;
}

.form-check{
    justify-content:center;
}

.btn-submit{
    width:100%;
}

.social-icons{
    justify-content:center;
}

.page-banner{
    padding:150px 20px 80px;
}

.page-banner h1{
    font-size:clamp(32px,6vw,40px);
}

.page-banner p{
    font-size:15px;
}

}

/* Mobile */
@media (max-width:576px){

.section-padding{
    padding:70px 0;
}

.section-header{
    margin-bottom:45px;
}

.section-title{
    font-size:28px;
}

.section-subtitle{
    font-size:15px;
}

.contact-info,
.contact-form{
    padding:22px;
    border-radius:16px;
}

.contact-item{
    gap:12px;
}

.contact-icon{
    width:46px;
    height:46px;
    font-size:17px;
}

.contact-details h3{
    font-size:17px;
}

.contact-details p{
    font-size:14px;
    line-height:1.7;
}

.contact-form h3{
    text-align:center;
    font-size:22px;
}

.form-group input,
.form-group textarea{
    font-size:14px;
    padding:14px 14px 14px 45px;
}

.form-group i{
    left:15px;
    top:16px;
}

.form-check{
    flex-wrap:wrap;
    justify-content:center;
    text-align:center;
}

.btn-submit{
    width:100%;
    padding:14px;
}

.social-icons{
    justify-content:center;
}

.social-icon{
    width:42px;
    height:42px;
}

.page-banner{
    padding:135px 15px 65px;
}

.page-banner span{
    font-size:12px;
    padding:8px 16px;
}

.page-banner h1{
    font-size:clamp(26px,8vw,32px);
}

.page-banner p{
    font-size:14px;
    line-height:1.7;
}

}

/* Small Phones */
@media (max-width:360px){

.contact-info,
.contact-form{
    padding:18px;
}

.section-title{
    font-size:24px;
}

.page-banner{
    padding:125px 12px 55px;
}

.page-banner h1{
    font-size:24px;
}

.page-banner p{
    font-size:13px;
}

.contact-icon{
    width:42px;
    height:42px;
    font-size:16px;
}

.contact-details h3{
    font-size:16px;
}

.contact-details p{
    font-size:13px;
}

.form-group input,
.form-group textarea{
    font-size:13px;
}

.btn-submit{
    font-size:15px;
}

}