.contact-section .row > [class*="col-"] > .htt-text-image,
.contact-section .row > [class*="col-"] > .container-fluid {
    height: 100%;
    align-content: center;
}
.contact-section .contact-wrapper {
    background-color: var(--colorYellow);
    padding: 60px;
}
/* Estructura del formulario */
fieldset {
    border: none;
    padding: 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    align-items: flex-start;
}

label span {
    font-size: 0.8rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

dfn[title="required"] {
    font-style: normal;
    color: red;
}

/* Campos de entrada */
.contact-section input[type="text"],
.contact-section textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: none;
    transition: border 0.3s;
}

.contact-section input[type="text"]:focus,
.contact-section textarea:focus {
    border-color:var(--colorBlue);
    outline: none;
}

/* Textarea específico */
.contact-section textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot oculto */
#mgnlhp {
    display: none;
}

/* Checkbox */
.contact-section .form-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.contact-section .form-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Botón de envío */
.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.contact-section input[type="submit"] {
    background-color: var(--colorBlue);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border-radius: none;
    padding: 8px 64px;
    cursor: pointer;
          transition: 
        padding 0.3s ease, 
        border-color 0.3s ease 0.3s, 
        color 0.3s ease 0.3s;
}

.contact-section input[type="submit"]:hover {
    padding-left: 96px;
    padding-right: 96px;
    background-color: var(--colorBlue);
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--colorPrimary);
    padding: 0.5rem 0;
}

.service-info {
    display: flex;
    gap: 1rem;
}
.service-info i {
    width: 20px;
}
.fa-icon {
    color: var(--colorBlue); /* color más oscuro al hacer hover */
}

.service-distance {
    white-space: nowrap;
}
.service-item span,
.service-item .fa-solid {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover .fa-solid,
.service-item:hover span {
    transform: translateX(5px);
    color: var(--colorBlue); /* o cualquier color destacado que uses */
}

@media (max-width: 768px) {
    .contact-section .contact-wrapper {
        padding: 20px;
    }
    .service-item {
        font-size: 0.8rem;
    }
    .contact-section input[type="submit"]{
        width: 100%;
    }
}