/* ==========================================
   CONTACT HERO
========================================== */

#contact-hero{
    padding:170px 0 100px;
    background:var(--background);
}


/* ==========================================
   CONTACT CONTENT
========================================== */

#contact-content{
    padding:100px 0;
    background:var(--white);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:70px;
    align-items:start;
}


/* ==========================================
   CONTACT INFO
========================================== */

.section-label{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    background:#DBEAFE;
    color:var(--primary);
    border-radius:100px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.contact-info h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-description{
    margin-bottom:40px;
    line-height:32px;
    color:var(--text-light);
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.info-item i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:#DBEAFE;
    color:var(--primary);
    border-radius:14px;
    font-size:24px;
}

.info-item h4{
    margin-bottom:8px;
    color:var(--text);
    font-size:20px;
}

.info-item p{
    color:var(--text-light);
    line-height:30px;
}


/* ==========================================
   CONTACT FORM
========================================== */

.contact-form{
    padding:45px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow);
}

.form-group{
    margin-bottom:24px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid var(--border);
    border-radius:12px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    transition:var(--transition);
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.contact-form button{
    width:100%;
    border:none;
    cursor:pointer;
}

.form-note{
    margin-top:18px;
    text-align:center;
    color:var(--text-light);
    font-size:14px;
    line-height:24px;
}


/* ==========================================
   GOOGLE MAPS
========================================== */

#maps{
    padding:0 0 100px;
    background:var(--white);
}

#maps iframe{
    width:100%;
    border:none;
    border-radius:20px;
    box-shadow:var(--shadow);
}


/* ==========================================
   CONTACT CTA
========================================== */

#contact-cta{
    padding:100px 0;
    background:var(--background);
}