/* ====================================
   PAGE BANNER
==================================== */

.page-banner{

    background:
    linear-gradient(
    rgba(255,66,84,0.88),
    rgba(255,66,84,0.88)
    ),
    url('../images/contact-page-banner.png');

    background-size: cover;
    background-position: center;

    padding: 140px 0;

    text-align: center;
}

.page-banner-content h1{
    color: #ffffff;
    margin-bottom: 15px;
}

.page-banner-content p{
    color: #ffffff;
    max-width: 700px;
    margin: auto;
}

/* ====================================
   CONTACT SECTION
==================================== */

.contact-section{
    padding: 100px 0;
}

.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ====================================
   CONTACT INFO
==================================== */

.contact-info-box{

    background: #ffffff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-label{

    display: inline-block;

    background: rgba(255,66,84,.10);

    color: #ff4254;

    padding: 10px 20px;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 20px;
}

.contact-info-box h2{
    margin-bottom: 20px;
}

.contact-info-box > p{
    margin-bottom: 35px;
}

.contact-item{

    display: flex;

    gap: 20px;

    margin-bottom: 30px;
}

.contact-item i{

    color: #ff4254;

    font-size: 24px;

    min-width: 30px;

    margin-top: 5px;
}

.contact-item h4{
    margin-bottom: 8px;
}

/* ====================================
   MAP
==================================== */

.contact-map{

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map iframe{

    width: 100%;

    height: 100%;

    min-height: 550px;

    border: 0;
}