html,
body{
 
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
    background:#111111;

}

/*=====================================
CONTACT SECTION
=====================================*/

.contact-section{

    display:grid;
    grid-template-columns:48% 52%;

    gap:12px;

    margin-top:12px;

    background:#111111;

}

/*=====================================
LEFT IMAGE
=====================================*/

.contact-left{

    min-height:900px;

}

.contact-left img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

}

/*=====================================
RIGHT CONTENT
=====================================*/

.contact-right{

    display:flex;
    align-items:center;
    justify-content:center;

    background:#111111;

}

.contact-content{

    width:75%;
    margin:auto;

}

/*=====================================
TEXT
=====================================*/

.contact-subtitle{

    display:block;

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:400;

    letter-spacing:6px;
    text-transform:uppercase;

    color:#C79A46;

    margin-bottom:22px;

}

.contact-heading{

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;

    letter-spacing:4px;
    text-transform:uppercase;

    color:#F5F2EB;

    margin-bottom:30px;

}

.contact-description{

    font-family:'Inter',sans-serif;
    font-size:15px;
    line-height:2;

    color:#F5F2EB;

    opacity:.85;

    margin-bottom:50px;

}

/*=====================================
FORM
=====================================*/

.contact-form{

    display:flex;
    flex-direction:column;

    gap:18px;

}

.form-group{

    width:100%;

}

.contact-form input,
.contact-form select{

    width:100%;

    padding:18px 22px;

    background:transparent;

    border:1px solid rgba(245,242,235,.18);

    outline:none;

    color:#F5F2EB;

    font-family:'Inter',sans-serif;
    font-size:15px;

    transition:.35s ease;

}

.contact-form input::placeholder{

    color:rgba(245,242,235,.55);

}

.contact-form select{

    appearance:none;

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23C79A46' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 20px center;

    background-size:16px;

}

.contact-form option{

    background:#111111;

    color:#F5F2EB;

}

.contact-form input:focus,
.contact-form select:focus{

    border-color:#C79A46;

}

/*=====================================
BUTTON
=====================================*/

.contact-btn{

    width:100%;

    padding:18px;

    margin-top:12px;

    background:transparent;

    border:1px solid #C79A46;

    color:#C79A46;

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;

    letter-spacing:3px;
    text-transform:uppercase;

    cursor:pointer;

    transition:.35s ease;

}

.contact-btn:hover{

    background:#C79A46;

    color:#111111;

}

/*=====================================
MOBILE
=====================================*/

@media (max-width:768px){

    .contact-section{

        display:grid;

        grid-template-columns:1fr;

        grid-template-areas:
            "image"
            "content";

        gap:0;

    }

    .contact-left{

        grid-area:image;

        min-height:420px;

    }

    .contact-right{

        grid-area:content;

        padding:50px 30px;

    }

    .contact-content{

        width:100%;
        margin:0;

    }

    .contact-left img{

        width:100%;
        height:100%;
        object-fit:cover;

    }

    .contact-form input,
    .contact-form select{

        padding:16px 18px;

    }

}

/* ===========================
   CTA
=========================== */

.cta-section{

    width:100%;

    min-height:55vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 24px;

    text-align:center;

    box-sizing:border-box;

}

.cta-content{

    width:100%;

    max-width:650px;

    margin:0 auto;

}
.cta-content span{

    display:block;

    font-size:15px;

    font-family:'Inter',sans-serif;

    color:#F5F2EB;

    letter-spacing:4px;

    margin-bottom:20px;

}
.cta-content p{

    font-size:15px;

    font-family:'Inter',sans-serif;

    color:#F5F2EB;

    line-height:2;

    margin-bottom:30px;

}

.cta-content a{

    text-decoration:none;

    color:#F5F2EB;

    border-bottom:1px solid #F5F2EB;

    padding-bottom:4px;

    font-size:15px;

    transition:.3s;

}

.cta-content a:hover{

    color:#C79A46;

    border-color:#C79A46;

}

/*==============================
FOOTER
==============================*/


/*=====================================
FOOTER
=====================================*/

.footer{

    width:100%;

    background:#111111;

    border-top:1px solid rgba(255,255,255,.08);

    padding:60px 24px 30px;

    box-sizing:border-box;

    text-align:center;

}

/* Links */

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:35px;

    margin-bottom:40px;

}

.footer-links a{

    text-decoration:none;

    color:#F5F2EB;

    font-size:15px;

    transition:.35s ease;

}

.footer-links a:hover{

    color:#C79A46;

}

/* Contact */

.footer-contact{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-contact a,

.footer-contact span{

    color:#F5F2EB;

    text-decoration:none;

    font-size:15px;

}

/* Social */

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    margin-bottom:45px;

}

.footer-social a{

    color:#F5F2EB;

    text-decoration:none;

    font-size:15px;

    transition:.35s ease;

}

.footer-social a:hover{

    color:#C79A46;

}

/* Copyright */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:rgba(245,242,235,.55);

    font-size:14px;

}

/* Mobile */

@media(max-width:768px){

.footer{

    padding:50px 24px 30px;

}

.footer-links,
.footer-contact,
.footer-social{

    width:100%;

    justify-content:center;

    align-items:center;

    margin-left:auto;

    margin-right:auto;

}

.footer-bottom{

    text-align:center;

}

}

/*=====================================
        SEARCH SECTION
======================================*/

.search-section{

    padding:80px 24px 40px;

}

.search-trigger{

    max-width:700px;

    margin:auto;

    height:70px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 30px;

    background:rgba(255,255,255,.03);

    cursor:pointer;

    transition:.35s;

}

.search-trigger:hover{

    border-color:#C79A46;

}

.search-icon{

    color:#C79A46;

    font-size:22px;

}

.search-text{

    flex:1;

    margin-left:18px;

    color:#999;

}

.search-shortcut{

    color:#777;

    font-size:14px;

}

/*=====================================
        MODAL
======================================*/

.search-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(18px);

    display:none;

    align-items:flex-start;

    justify-content:center;

    padding-top:120px;

    z-index:9999;

}

.search-modal.active{

    display:flex;

}

.search-box{

    width:min(720px,90%);

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

}

.search-box input{

    width:100%;

    height:72px;

    background:none;

    border:none;

    outline:none;

    color:#fff;

    font-size:20px;

    padding:0 28px;

}

.search-results{

    max-height:420px;

    overflow-y:auto;

}

.search-item{

    display:block;

    padding:18px 28px;

    color:#fff;

    text-decoration:none;

    border-top:1px solid rgba(255,255,255,.05);

    transition:.25s;

}

.search-item:hover{

    background:#222;

}
