/*==========================================
CONTACT HERO
==========================================*/

.contact-hero{

    position:relative;

    min-height:70vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:url("asset/images/gallery/gallery-banner.jpg")
               center/cover no-repeat;

    overflow:hidden;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(8,18,32,.78),
        rgba(8,18,32,.82)
    );

}

.contact-title{

    position:relative;

    color:#fff;

    font-size:clamp(2.8rem,6vw,4.8rem);

    font-family:"Cormorant Garamond",serif;

    margin:25px 0;

    line-height:1.1;

}

.contact-title span{

    color:#c89b2c;

}

.contact-description{

    position:relative;

    max-width:760px;

    margin:auto;

    color:#d5d9df;

    font-size:1.15rem;

    line-height:1.9;

}

.contact-hero .hero-buttons{
    position: relative;
    margin-top:45px;

}
/*==========================================
CONTACT INFO
==========================================*/

.contact-info{

    background:#f8fafc;

}

.contact-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#c89b2c;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.contact-card h4{

    color:#102846;

    font-weight:700;

    margin-bottom:18px;

}

.contact-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:15px;

}

.contact-card a{

    color:#102846;

    font-weight:600;

    text-decoration:none;

}

.contact-card a:hover{

    color:#c89b2c;

}
/*==========================================
CONTACT FORM & MAP
==========================================*/

.contact-section{

    padding:100px 0;

    background:#fff;

}

.contact-form-wrapper{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    height:100%;

}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select{

    height:55px;

    border-radius:12px;

    border:1px solid #d9d9d9;

    box-shadow:none;

}

.contact-form-wrapper textarea.form-control{

    height:auto;

    resize:none;

}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus{

    border-color:#c89b2c;

    box-shadow:0 0 0 .15rem rgba(200,155,44,.2);

}

.contact-form-wrapper button{

    padding:14px 36px;

}

.map-wrapper{

    height:100%;

    min-height:620px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.map-wrapper iframe{

    width:100%;

    height:100%;

    border:0;

}

@media(max-width:992px){

    .contact-form-wrapper{

        padding:35px;

    }

    .map-wrapper{

        min-height:450px;

    }

}

@media(max-width:768px){

    .contact-section{

        padding:70px 0;

    }

    .contact-form-wrapper{

        padding:25px;

    }

    .map-wrapper{

        min-height:350px;

    }

}
/*==========================================
CONTACT CTA
==========================================*/

.contact-cta{

    padding:100px 0;

    background:#f8fafc;

}

.contact-cta .cta-box{

    background:linear-gradient(135deg,#102846,#1b426d);

    border-radius:28px;

    padding:80px 50px;

    text-align:center;

    color:#fff;

}

.contact-cta .cta-box h2{

    font-size:clamp(2.2rem,5vw,3.8rem);

    font-family:"Cormorant Garamond",serif;

    margin:25px 0;

    line-height:1.2;

}

.contact-cta .cta-box h2 span{

    color:#c89b2c;

}

.contact-cta .cta-box p{

    max-width:760px;

    margin:0 auto;

    color:#d8dde4;

    line-height:1.9;

    font-size:1.08rem;

}

.contact-cta .hero-buttons{

    margin-top:45px;

}

@media(max-width:768px){

    .contact-cta .cta-box{

        padding:60px 25px;

    }

}