/* =========================
   FONDO CON IMAGEN
========================= */
.contact-area {
    position: relative;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') no-repeat center center/cover;
    padding: 80px 0;
    z-index: 1;
}

.section-title-contact {
	text-align: center;
	margin-bottom: 75px;
}

.section-title-contact h5 {
	color: white;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-family: 'Montserrat', sans-serif;
	border-bottom: 1px dashed;
	width: 32%;
	margin: 0 auto;
}

.section-title-contact h2 {
	font-weight: 600;
	text-transform: capitalize;
	font-size: 24px;
	line-height: 1.3;
	color: white;
}

.contact-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.contact-area .container {
    position: relative;
    z-index: 2;
}

/* TITULOS */
.section-title h2,
.section-title h5 {
    color: #fff;
}

/* =========================
   TARJETA PRINCIPAL
========================= */
.contact-card {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

/* =========================
   LADO IZQUIERDO
========================= */
.contact-left {
    flex: 2;
    display: flex;
    flex-direction: column;
}

/* INFO EN FLEX */
.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #052241;
    color: #fff;
    padding: 30px;
}

/* ITEM INFO */
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* ICONOS */
.info-item i {
    font-size: 20px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* TEXTOS DESTACADOS */
.info-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.info-item span {
    font-size: 13px;
    color: #f6e9e1;
}

/* =========================
   FORMULARIO
========================= */
.contact-form-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
}

/* INPUTS */
.form-control {
    width: 100%;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* MANTENER TU FOCUS ORIGINAL */
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px #052241 !important;
}

.title-contact{
    color: white !important;
}
/* =========================
   BOTON
========================= */
.btn-contact {
    background-color: #052241 !important;
    color: #fff !important;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn-contact:hover {
    transform: translateY(-2px);
    background-color: black !important;
}

/* =========================
   IMAGEN DERECHA
========================= */
.contact-image {
    flex: 1;
    background: url('https://plus.unsplash.com/premium_photo-1677009541474-1fc2642943c1?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8bWVjJUMzJUExbmljb3xlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
    min-height: 400px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .contact-card {
        flex-direction: column;
    }

    .contact-image {
        height: 250px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        padding-left: 25%;
    }

    .contact-image {
        display: none;
    }
}