/*=========================================
        CONTACT PAGE
=========================================*/

.contact-section{
    padding:120px 0;
    background:#f8fafc;
}

.contact-section .container{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

/*=========================================
        CONTACT TOP INFO
=========================================*/

.contact-top-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:70px;
}

.top-info-item{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:20px;
    border-left:5px solid #F4B400;
    box-shadow:0 15px 40px rgba(52,55,65,.08);
    transition:.35s ease;
}

.top-info-item:hover{
    transform:translateY(-6px);
    border-left-color:#343741;
    box-shadow:0 20px 45px rgba(52,55,65,.15);
}

.top-info-item i{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#F4B400;
    color:#343741;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s ease;
}

.top-info-item:hover i{
    background:#343741;
    color:#F4B400;
    transform:rotate(-10deg);
}

.top-info-item span{
    display:block;
    color:#888;
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.top-info-item h5{
    margin:0;
    color:#343741;
    font-size:20px;
    font-weight:700;
    line-height:30px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.contact-top-info{
    grid-template-columns:1fr;
    gap:20px;
    margin-bottom:50px;
}

}

@media(max-width:767px){

.top-info-item{
    padding:22px;
}

.top-info-item i{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:20px;
}

.top-info-item h5{
    font-size:17px;
    line-height:26px;
}

}
/*=========================================
        HERO BANNER
=========================================*/

.page-hero{
    position:relative;
    height:450px;
    background:url('../images/contact/hero.jpg') no-repeat;
    background-size:cover;
    background-position:right center;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.1;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    color:#fff;
}

.breadcrumb a{
    color:#f4b400;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb span{
    color:#fff;
}

/*=========================================
        CONTACT LAYOUT
=========================================*/

.contact-wrapper{
    width:100%;
}

.contact-form-wrapper{
    max-width:900px;
    margin:50px auto 0;
}

.contact-form{
    width:100%;
}

/*=========================================
        LEFT SIDE
=========================================*/

.section-tag{
    display:inline-block;
    color:#f4b400;
    font-size:17px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-info h2{
    font-size:54px;
    line-height:64px;
    color:#222;
    font-weight:800;
    margin-bottom:20px;
}

.contact-info>p{
    font-size:18px;
    color:#666;
    line-height:34px;
    margin-bottom:45px;
}
/*=========================================
        CONTACT INFO BOX
=========================================*/

.info-box{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:28px;
    margin-bottom:25px;
    background:#ffffff;
    border-radius:18px;
    border-left:5px solid #F4B400;
    box-shadow:0 12px 35px rgba(52,55,65,.08);
    transition:.35s ease;
}

.info-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(52,55,65,.15);
    border-left-color:#343741;
}

.info-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#F4B400;
    color:#343741;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s ease;
}

.info-box:hover .info-icon{
    background:#343741;
    color:#F4B400;
    transform:rotate(-10deg);
}

.info-text h4{
    font-size:22px;
    font-weight:700;
    color:#343741;
    margin-bottom:8px;
}

.info-text p{
    margin:0;
    color:#666666;
    font-size:16px;
    line-height:28px;
}

.info-text a{
    color:#666666;
    text-decoration:none;
    transition:.3s;
}

.info-text a:hover{
    color:#F4B400;
}

/*=========================================
        CONTACT FORM
=========================================*/

.contact-form{
    background:#ffffff;
    padding:45px;
    border-radius:25px;
    border-top:5px solid #F4B400;
    box-shadow:0 20px 60px rgba(52,55,65,.08);
    transition:.35s ease;
}

.contact-form:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(52,55,65,.15);
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px 22px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    background:#ffffff;
    color:#343741;
    font-size:16px;
    transition:.35s ease;
    outline:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#999;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#F4B400;
    box-shadow:0 0 0 4px rgba(244,180,0,.15);
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:60px;
    border:none;
    border-radius:50px;
    background:#343741;
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.35s ease;
}

.contact-btn:hover{
    background:#F4B400;
    color:#343741;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(244,180,0,.30);
}
/*=========================================
        GOOGLE MAP
=========================================*/

.contact-map{
    width:100%;
    padding:0;
    margin:0;
}

.contact-map iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}


/*=========================================
        CTA SECTION
=========================================*/

.contact-cta{
    padding:100px 0;
    background:#ffffff;
}

.cta-wrapper{
    background:linear-gradient(135deg,#343741,#23252D);
    border-radius:25px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(244,180,0,.08);
    top:-140px;
    right:-100px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content span{
    display:inline-block;
    color:#F4B400;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.cta-content h2{
    color:#ffffff;
    font-size:46px;
    font-weight:800;
    line-height:56px;
    margin-bottom:18px;
}

.cta-content p{
    color:#d8d8d8;
    font-size:18px;
    line-height:30px;
    max-width:650px;
}

.cta-button{
    position:relative;
    z-index:2;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:60px;
    border-radius:50px;
    background:#F4B400;
    color:#343741;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(244,180,0,.30);
}

.cta-btn:hover{
    background:#ffffff;
    color:#343741;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(52,55,65,.25);
}

.cta-wrapper:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(52,55,65,.25);
}

/*=========================================
        SPACING
=========================================*/

.page-hero{
    margin-bottom:0;
}

.contact-section{
    margin-bottom:0;
}

.contact-map{
    margin-bottom:0;
}

.contact-cta{
    margin-bottom:0;
}
/*=========================================
        RESPONSIVE - TABLET
=========================================*/

@media (max-width:991px){

.page-hero{
    height:350px;
    background-position:center;
}

.hero-content h1{
    font-size:48px;
}

.breadcrumb{
    font-size:16px;
}

.contact-section{
    padding:90px 0;
}

/*=========================================
        CONTACT HEADING
=========================================*/

.contact-heading{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.contact-heading span{
    display:inline-block;
    color:#F4B400;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.contact-heading h2{
    color:#343741;
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-heading p{
    max-width:720px;
    margin:0 auto;
    color:#666;
    font-size:18px;
    line-height:32px;
}
.contact-wrapper{
    grid-template-columns:1fr;
    gap:60px;
}

.contact-info h2{
    font-size:42px;
    line-height:52px;
}

.form-row{
    grid-template-columns:1fr;
}

.contact-form{
    padding:35px;
}

.contact-map iframe{
    height:400px;
}

.cta-wrapper{
    flex-direction:column;
    text-align:center;
    padding:50px 35px;
}

.cta-content h2{
    font-size:36px;
    line-height:46px;
}

.cta-btn{
    width:220px;
}

}

/*=========================================
        RESPONSIVE - MOBILE
=========================================*/

@media (max-width:767px){

.page-hero{
    height:280px;
}

.hero-content h1{
    font-size:34px;
    line-height:42px;
}

.breadcrumb{
    font-size:15px;
    flex-wrap:wrap;
}

.contact-section{
    padding:70px 0;
}

.contact-info h2{
    font-size:32px;
    line-height:42px;
}

.contact-info>p{
    font-size:16px;
    line-height:28px;
}

.info-box{
    gap:15px;
}

.info-icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:18px;
}

.info-text h4{
    font-size:19px;
}

.info-text p{
    font-size:15px;
    line-height:26px;
}

.contact-form{
    padding:25px;
    border-radius:18px;
}

.form-group input,
.form-group textarea{
    padding:16px 18px;
    font-size:15px;
}

.contact-btn{
    width:100%;
}

.contact-map iframe{
    height:300px;
}

.contact-cta{
    padding:70px 0;
}

.cta-wrapper{
    padding:35px 25px;
}

.cta-content h2{
    font-size:28px;
    line-height:38px;
}

.cta-content p{
    font-size:16px;
    line-height:28px;
}

.cta-btn{
    width:100%;
}

}

/*=========================================
        SMOOTH EFFECTS
=========================================*/

.info-box,
.contact-form,
.cta-wrapper{
    transition:all .35s ease;
}

.contact-form:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.info-box:hover{
    transform:translateX(6px);
}

.cta-wrapper:hover{
    box-shadow:0 25px 60px rgba(13,110,253,.20);
}