.contact-section .information-section .title {
    text-align: center;
    margin-bottom: 25px;
}

.contact-section .information-section {
    padding-top: 50px;
    width: 400px;
    margin: auto;
}

.contact-section .information-section .content-text {
    display: flex;
    margin-bottom: 25px;
}

.contact-section .information-section h2 {
    margin-top: -20px;
    color: #112967;


}

.contact-section .information-section .content-text .text {
    align-items: center;
    display: flex;
    width: 200px;
    justify-content: center;
    text-align: center;
}

.country-select input {
    /*
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    */
}

.contact-section-three .contact-body {
    justify-content: space-evenly !important;
}

.dommo-header {
    background-color: #FBCE06;
}

.header-container {
    background-color: #FBCE06;
}

.main-navigation a {
    color: #222;
    display: block;
}

.main-navigation a:hover {
    background-color: #8A7005;
    padding: 6px 10px;
    border-radius: 10px;
    border-bottom: none;
}

.dommo-logo {
    filter: brightness(0) invert(0);
}

/* Contact Main Section */
.contacto-main {
    min-height: 100vh;
    padding-top: 40px;
}

.contact-full-section {
    padding: 100px 0;
    background: white;
}


/* Left Side - Contact Info */
.contact-left h2 {
    font-size: 30px;

    color: #112967;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-left > p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {

    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
    padding: 10px 10px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #112967;
    background: #f1f4ff;
}

.contact-section i {
    font-size: 1.7rem;
    width: 20px;
    text-align: center;
    font-family: "FontAwesome", sans-serif;
    font-style: normal;
    margin-right: 5px;
    display: block;
}

.business-hours {
    margin-bottom: 40px;
}

.business-hours h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.hours-info {
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

.hours-info i {
    font-size: 1.8rem;

    margin-top: 2px;
}

.hours-info p {
    margin: 2px 0;
    color: #666;
    line-height: 1.4;
}

.social-media h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #112967;
    color: #ffffff;
}

/* Right Side - Contact Form */
.contact-form {
    background: white;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; /* AUMENTAR UN POCO EL GAP */
    margin-bottom: 12px;
}

.contact-section .form-group {
    margin-bottom: 8px;
}

/* Quitar labels externos */
.contact-section .form-group label {
    display: none;
}

/* Mantener solo labels de radio buttons y checkbox */
.method-option label,
.checkbox-group label {
    display: block !important;
    margin: 0;
    font-weight: normal;
}

.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-width: 200px; /* EL QUE CONTROLA EL ANCHO MÍNIMO */
}

.contact-section .form-group input:focus,
.contact-section .form-group select:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

/* PREFIJO DENTRO DEL CUADRO */
.phone-input-combined {
    display: flex;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    max-width: 230px;
}

.phone-input-combined select {
    border: none;
    background: #f8f9fa;
    padding: 18px 8px; /* REDUCIR PADDING HORIZONTAL */
    width: 80px; /* REDUCIR ANCHO DE 120px A 100px */
    border-right: 1px solid #e1e5e9;
    font-size: 0.9rem; /* REDUCIR TAMAÑO FUENTE */
    min-width: auto;
    flex-shrink: 0;
}

.phone-input-combined input {
    border: none;
    flex: 1;
    padding: 18px 10px; /* REDUCIR PADDING */
    font-size: 1rem;
    min-width: auto;
}

.phone-input-combined:focus-within {
    border-color: #ffd700;
}

/* CSS ANTERIOR PARA PHONE-INPUT (mantener por compatibilidad) */
.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 120px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

/* Contact Method Selection */
.contact-method-group {
    margin-bottom: 20px;
}

.contact-method-group > label {
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.method-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

/* Radio buttons en línea horizontal */
.contacto-main .contact-method-options {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contacto-main .method-option {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.method-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.method-option select {
    margin-left: 8px;
    width: 120px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.checkbox-group a {
    color: #e91e63;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #555;
}

.form-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
    z-index: 1;
}

.form-divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
}

/* Form Messages */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}

.notice-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.field-error {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-input,
    .phone-input-combined {
        flex-direction: column;
    }

    .phone-input select,
    .phone-input-combined select {
        width: 100%;
    }

    /* AGREGAR ESTO PARA MÓVIL */
    .contact-method-options {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    .method-option {
        gap: 10px;
    }
}


/*--------------------------*/
.contact-section .contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-section .contact-header h2 {
    font-size: 2em;
}

.contact-section .contact-header p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 80px;
}

.contact-section form p {
    margin-bottom: 0;
}

.contact-section input[type="text"], .contact-section input[type="email"] {
    width: 100%;
}

.contact-body {
    display: flex;
    /*justify-content: space-evenly;*/
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}


.contact-body .contact-left {
    width: 100%;
}

.contact-body .contact-right {
    width: 100%;

}


.contact-body .contact-left .contact-numbers {
    display: flex;
    background-color: #fffbd9;
    justify-content: space-evenly;
    padding: 28px 0px;
    text-align: center;
}


.contact-body .contact-left .contact-numbers button {
    background-color: transparent;
    border-radius: 18px;
    padding: 6px 9px;
    border: 1.3px solid #444;
    margin-top: 8px;
}


.contact-section {
    /*padding:  40px 0;*/
}


.contact-representatives {
    margin-top: 35px;
    padding: 30px 70px;
    background-color: #fffbd9;
    /*height: 50%;*/
    padding-left: 50px;
    padding-top: 45px;
}

.contact-representatives h3 {
    margin-bottom: 25px;
}

.contact-representatives .representative-card {
    display: flex;
    /*justify-content: space-around;*/
    gap: 0 20px;
}

.contact-representatives > :nth-child(2) {
    margin-bottom: 35px;

}

.contact-representatives .representative-card div {
    flex: 1;
}

.contact-representatives .representative-card img {
    height: 50px;
    flex: 0 0 auto;
}

.contact-representatives .representative-card p {
    margin-bottom: 8px;
}

.contact-representatives .representative-card i {
    margin-right: 5px;
}


/* .contact-right {
    border: 1px solid black;
} */

.contact-right .form-row {
    display: flex;
    justify-content: space-between;
}

.contact-right .form-row .form-input {
    border: 1px solid #737373;
    display: flex;
    flex-direction: column;
    width: 48%;
    border-radius: 6px;
    padding: 3px 6px;
    overflow: hidden;
}

.contact-right .form-input input {
    border: none;
    outline: none;
}

.contact-right .form-input #correo {
    position: relative;
    top: 5px;
}

.contact-right .form-row .form-input div select {
    width: 20%;
    height: 25px;
    border: none;
}

.contact-right .form-row .form-input div input {
    width: 75%;
    margin-left: 5px;
}

.contact-right form > .form-input {
    position: relative;
}

.contact-right form > .form-input.static {
    height: 65px;
}

.contact-right .form-input .servicio-input {
    height: 1.3em;
    font-size: 1em;
    margin-top: 5px;
    border: none;
}

.contact-right .form-input .servicio-input:focus,
.contact-right .form-input .servicio-input:active {
    height: auto;
    position: absolute;
    width: 95.5%;
    top: 48%;
    background-color: white;
    z-index: 9999;
    outline: none;
    border: 1px solid #55555537;
}


.contact-right .form-input {
    border: 1px solid #737373;
    display: flex;
    border-radius: 6px;
    padding: 3px 6px;
    overflow: hidden;
    margin: 5px 0;
}

.contact-right .form-input.contact-medios {
    border: none;
    display: block;
}
.contact-right .form-input.contact-medios > p{
    margin-bottom: 6px;
}

.contact-right .form-input.contact-medios div {
    display: flex;
    gap: 15px;
}

.contact-right .form-input.contact-medios div select {
    border: none;
    border-bottom: 1px solid #444;
    margin-left: 9px;
}


.contact-right .form-input textarea {
    border: none;
    resize: none;
    width: 100%;
    height: 50px;
}

.contact-right .form-input textarea:focus {
    outline: none;
}

.contact-right form > .form-input:nth-child(7) {
    margin-bottom: 0;
}


.contact-right .form-checkbox a {
    color: black;
    text-decoration: underline;
}

.contact-right label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
}
.wpcf7-list-item label {
    font-size: 15px;
}


.contact-right .btn-contact-enviar {
    width: 100%;
    border-radius: 20px;
    border: none;
    text-align: center;
    background-color: #88bfe6;
    color: white;
    padding: 12px 0;
    font-size: 1.2em;
    margin-top: 22px;
}

.contact-right .btn-contact-enviar ~ p {
    font-weight: 600;
    text-align: center;
    font-size: 1.1em;
    margin-top: 9px;
}


.contact-right .btn-contact-whatsapp {
    display: block;
    width: 80%;
    border-radius: 20px;
    border: none;
    text-align: center;
    background-color: #00a851;
    color: white;
    padding: 12px 0;
    font-size: 1.1em;
    margin: auto;
    margin-top: 3px;

}

.contact-right .form-input > label {
    font-size: 0.9em;
}

.contact-right form > :nth-child(6) > label,
.contact-right form > :nth-child(7) > label {
    font-size: 1em;
}

.contact-right form > :nth-child(6),
.contact-right form > :nth-child(7) {
    padding-left: 5px;
}

/*--------------------------------*/

@media (min-width: 992px) {
    .contact-body .contact-left {
        width: 40%;
    }

    .contact-body .contact-right {
        width: 60%;
    }

    .contact-body {
        display: flex;
        /*justify-content: space-evenly;*/
        justify-content: space-between;
        gap: 50px;
        flex-wrap: nowrap;
    }
}

/*--------------------------------*/
