/* ========================= */
/* CONTACT PAGE CSS */
/* ========================= */

/* HERO */

.contact-hero{
    width:100%;
    min-height:60vh;
    background:
    linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    ),
    url('/images/contact.jpeg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
}

/* OVERLAY */

.contact-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.80) 15%,
        rgba(0,0,0,0.20) 100%
    );
}

/* CONTAINER */

.contact-container{
    width:100%;
    padding:0 8%;
    position:relative;
    z-index:2;
}

/* CONTENT */

.contact-content{
    max-width:700px;
}

.contact-content h1{
    color:#fff;
    font-size:80px;
    font-weight:800;
    margin-bottom:25px;
}

.contact-content h1 span{
    color:#d77706;
    text-shadow:none;
}

.contact-content p{
    color:#d1d5db;
    font-size:22px;
    line-height:1.8;
}

/* CONTACT SECTION */

.contact-section{
    padding:100px 8%;
    background:#020617;
}

/* WRAPPER */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

/* LEFT */

.contact-info h2{
    color:#fff;
    font-size:50px;
    margin-bottom:20px;
}

.contact-info p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/* INFO BOX */

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:
    linear-gradient(
        135deg,
        #ff7b00,
        #ffae00
    );
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-box h3{
    color:#fff;
    margin-bottom:8px;
}

.info-box p{
    margin:0;
}

/* MAP */

.contact-map{
    height:500px;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-content{
        text-align:center;
        margin:auto;
    }

    .contact-content h1{
        font-size:55px;
    }

    .contact-info{
        text-align:center;
    }

    .info-box{
        justify-content:center;
    }

}

@media(max-width:600px){

    .contact-content h1{
        font-size:42px;
    }

    .contact-content p{
        font-size:16px;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-map{
        height:350px;
    }

}