/*=================================================
                CONTACT HERO
=================================================*/

.contact-hero{

    position:relative;

    padding:180px 0 140px;

    background:url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1920&q=80') center center/cover;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(13,10,99,.92),
        rgba(30,139,255,.78)
    );

}

.contact-hero .container{

    position:relative;

    z-index:2;

}

.contact-hero .hero-tag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.15);

    color:#fff;

    border-radius:50px;

    backdrop-filter:blur(10px);

    margin-bottom:25px;

    font-weight:600;

}

.contact-hero h1{

    color:#fff;

    font-size:58px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.contact-hero p{

    color:rgba(255,255,255,.9);

    font-size:20px;

    line-height:1.9;

}

@media(max-width:991px){

.contact-hero{

padding:150px 0 100px;

}

.contact-hero h1{

font-size:42px;

}

.contact-hero p{

font-size:17px;

}

}

/*=========================================
        CONTACT SECTION
=========================================*/

.contact-section{

    padding:120px 0;

    background:#F8FAFC;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:20px;

    margin-bottom:25px;

    transition:.35s;

    box-shadow:0 20px 40px rgba(15,23,42,.05);

}

.contact-card:hover{

    transform:translateX(8px);

}

.contact-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #0D0A63,
        #1E8BFF
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.contact-card small{

    color:#64748B;

}

.contact-card h5{

    margin-top:8px;

    color:#24324B;

    margin-bottom:0;

    line-height:1.6;

}

.contact-form-box{

    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:0 30px 60px rgba(15,23,42,.08);

}

.contact-form-box h3{

    margin-bottom:15px;

    color:#24324B;

}

.contact-form-box p{

    color:#64748B;

    margin-bottom:35px;

}

.form-control,
.form-select{

    border-radius:14px;

    min-height:58px;

    border:1px solid #E5E7EB;

}

textarea.form-control{

    min-height:180px;

    resize:none;

}

.form-control:focus,
.form-select:focus{

    border-color:#1E8BFF;

    box-shadow:none;

}

.contact-form-box .btn-primary-custom{

    padding:16px 38px;

}

/*=========================================
        OFFICE LOCATION
=========================================*/

.office-location{

    padding:120px 0;

    background:#fff;

}

.office-highlights{

    margin-top:40px;

}

.highlight-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.highlight-item i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #0D0A63,
        #1E8BFF
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.highlight-item h5{

    color:#24324B;

    margin-bottom:8px;

}

.highlight-item p{

    color:#64748B;

    margin:0;

    line-height:1.8;

}

.map-wrapper{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 30px 70px rgba(15,23,42,.08);

}

.map-wrapper iframe{

    width:100%;

    height:600px;

    border:none;

}

/*=========================================
        CONTACT FAQ
=========================================*/

.contact-faq{

    padding:120px 0;

    background:#F8FAFC;

}

.contact-faq .accordion-item{

    border:none;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(15,23,42,.05);

}

.contact-faq .accordion-button{

    padding:25px 30px;

    font-weight:600;

    color:#24324B;

    background:#fff;

    box-shadow:none;

}

.contact-faq .accordion-button:not(.collapsed){

    background:#0D0A63;

    color:#fff;

}

.contact-faq .accordion-button:focus{

    box-shadow:none;

}

.contact-faq .accordion-body{

    padding:30px;

    color:#64748B;

    line-height:1.9;

}

/*=========================================
        CONTACT CLOSING
=========================================*/

.contact-closing{

    padding:120px 0;

    background:#ffffff;

}

.closing-box{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    padding:80px;

    background:linear-gradient(
        135deg,
        #0D0A63 0%,
        #1E8BFF 100%
    );

    box-shadow:0 30px 70px rgba(13,10,99,.18);

}

/* Decorative Glow */

.closing-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.closing-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    bottom:-70px;

    left:-70px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.closing-box>*{

    position:relative;

    z-index:2;

}

.closing-box h2{

    color:#fff;

    font-size:46px;

    font-weight:700;

    margin:20px 0;

    line-height:1.2;

}

.closing-box p{

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

}

.closing-box .btn{

    min-width:240px;

    font-weight:600;

    transition:.35s;

}

.closing-box .btn:hover{

    transform:translateY(-4px);

}

@media(max-width:992px){

    .contact-closing{

        padding:80px 0;

    }

    .closing-box{

        padding:50px 35px;

        text-align:center;

    }

    .closing-box h2{

        font-size:34px;

    }

    .closing-box .btn{

        width:100%;

    }

}