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

.contact-hero{

    height: 60vh;

    background: url('../assets/instalaciones/fachada.png') center/cover no-repeat;

    position: relative;

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

    text-align: center;
}

.contact-overlay{

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.5);
}

.contact-hero-content{

    position: relative;
    z-index: 2;

    color: white;
}

.contact-hero-content h1{

    font-size: 72px;
    margin-bottom: 20px;
}

.contact-hero-content p{

    font-size: 20px;
}

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

.contact-container{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;
}

.contact-info h2{

    font-size: 48px;

    margin: 20px 0;
}

.contact-info p{

    line-height: 1.8;
}

.info-box{

    margin-top: 35px;
}

.info-box h3{

    margin-bottom: 12px;
}

.info-box a{

    color: var(--green);

    text-decoration: none;

    font-weight: 600;
}

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

.contact-form{

    background: var(--white);

    padding: 50px;

    border-radius: 30px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form form{

    display: flex;
    flex-direction: column;

    gap: 25px;
}

.contact-form input,
.contact-form textarea{

    padding: 18px 20px;

    border: 1px solid #ddd;

    border-radius: 15px;

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

    font-size: 16px;

    outline: none;
}

.contact-form textarea{

    resize: none;

    height: 180px;
}

/* ================= MAP ================= */

.map-full iframe{

    width: 100%;
    height: 500px;

    border: none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-container{

        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .contact-hero-content h1{

        font-size: 52px;
    }

    .contact-info h2{

        font-size: 38px;
    }

}

@media(max-width:480px){

    .contact-hero-content h1{

        font-size: 40px;
    }

    .contact-info h2{

        font-size: 30px;
    }

    .contact-form{

        padding: 35px 25px;
    }

}