.custom-contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.custom-form-container, .custom-location-container {
    flex: 1 1 500px;
    min-width: 320px;
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.custom-form-title, .custom-location-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.custom-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.custom-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-form-input, .custom-form-select, .custom-form-textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(2px);
}

.custom-form-input::placeholder,
.custom-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.custom-phone-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-flag {
    font-size: 1.2em;
}

.custom-checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.custom-form-checkbox {
    margin-right: 10px;
    margin-top: 5px;
}

.custom-checkbox-label {
    color: #ccc;
}

.custom-submit-btn {
    background-color: #e74c3c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    transition: background 0.3s;
}

.custom-submit-btn:hover {
    background-color: #c0392b;
}

/* Ubicación */
.custom-location-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.custom-location-city {
    font-weight: 600;
    color: white;
}

.custom-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-contact-content {
        flex-direction: column;
    }
}


.custom-form-input,
.custom-form-textarea,
.custom-form-select {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Placeholder más visible */
.custom-form-input::placeholder,
.custom-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Altura cómoda del campo mensaje */
.custom-form-textarea {
    height: 150px !important;
    resize: vertical;
}

/* Mejora checkbox */
.custom-checkbox-label {
    color: #e0e0e0 !important;
}

/* Que los bordes de input/textarea no se vean tan planos */
.custom-form-input:focus,
.custom-form-textarea:focus,
.custom-form-select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Botón aún más estilizado */
.custom-submit-btn {
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    font-size: 1em;
    padding: 14px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: background 0.3s ease;
}

.custom-submit-btn:hover {
    background-color: #c0392b;
}

/* NUEVOS */

/* Teléfono con indicativo */
.custom-phone-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.custom-country-code {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px;
    font-size: 1em;
    width: 77px;
}

/* Mensaje full-width alineado */
.full-width {
    width: 100%;
}

/* Select bien alineado */
.custom-form-select {
    width: 100%;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Ajuste para el textarea */
.custom-form-textarea {
    width: 100%;
    height: 150px;
    color: white;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 10px;
    resize: vertical;
}

.custom-form-select option {
  background-color: white;
  color: black;
}

.custom-country-code option {
  background-color: white;
  color: black;
}

/* nuevo */
.custom-contact-container {
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.custom-contact-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-mail,
.info-phone,
.info-mobiles {
    margin: 5px 0;
}



