/* ===== HERO BANNER ===== */
.our-services-hero {
    position: relative;
    background: url('/images/banners/contact-us.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    width: 100%; /* Ocupa todo el ancho de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    padding: 80px 0; /* Espaciado superior e inferior */
    background: #fff;
}

/* Contenedor principal del formulario */
.contact-container {
    width: 60%; /* Ajusta el ancho total del formulario */
    max-width: 800px; /* Limita el tamaño en pantallas grandes */
    text-align: center;
    background: #f8f8f8; /* Color de fondo para resaltar */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Agrega un sombreado sutil */
}

/* Centra el título */
.contact-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #002b5c;
    margin-bottom: 30px;
}

/* FORMULARIO */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ajuste de filas */
.contact-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Ajuste de campos */
.contact-field {
    flex: 1;
    position: relative;
}

/* Campos del formulario */
.contact-field input,
.contact-field textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #002b5c;
    padding: 12px;
    font-size: 18px;
    outline: none;
    background: transparent;
}

/* Ajuste del textarea */
.contact-field textarea {
    border: 2px solid #002b5c;
    border-radius: 8px;
    resize: none;
    min-height: 150px;
}

/* BOTÓN DE ENVIAR */
.contact-submit {
    width: 100%;
    background: #002b5c;
    color: white;
    border: 2px solid #002b5c;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
}

.contact-submit:hover {
    background: white;
    color: #002b5c;
}

/* INFORMACIÓN DE CONTACTO */
.contact-info-form {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: #002b5c;
}

.contact-info-form p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

/* Íconos de contacto */
.contact-icon {
    font-size: 20px;
    color: #f4a261;
}

/* 🔹 RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .contact-section {
        padding: 40px 0;
        width: 100%;
    }

    .contact-container {
        width: 85%;
        padding: 25px;
        margin: 0 auto;
    }

    .contact-form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .contact-field {
        width: 100%;
    }

    .contact-field input,
    .contact-field textarea {
        width: 100%;
        font-size: 16px;
        padding: 10px;
        box-sizing: border-box;
    }

    .contact-submit {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-container {
        width: 90%;
        padding: 20px;
    }

    .contact-container h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-info-form {
        margin-top: 30px;
        font-size: 14px;
    }

    .contact-info-form p {
        gap: 8px;
    }

    .contact-submit {
        padding: 10px;
        font-size: 16px;
    }
}