/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contactjk{
    padding:0px 0 0;
    position:relative;
    margin: auto;
    color: #000;
    font-size: 14px;
    width: 100%;
  }
  
  /* Estilos del formulario */
  .contactjk-form {
    background-color: #ffffff;
    padding: 20px;
    margin: auto;
    border: 0.01px solid rgba(255, 0, 0, 0.5);/* Borde rojo */
    border-radius: 8px;
    width: 60%; /* Ancho del formulario */
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    position: relative; /* Para que se superponga sobre el fondo */
    z-index: 1; /* Asegura que el formulario esté por encima del fondo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover dinámico para el formulario */
  .contactjk-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }
  
  /* Título y descripción */
  .contactjk-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #007BFF;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .contactjk-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Grupos del formulario */
  .contactjk-group {
    margin-bottom: 15px;
  }
  
  .contactjk-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
  }
  
  .contactjk-input,
  .contactjk-textarea {
    width: 100%;
    padding: 10px;
    border: 0.01px solid rgba(255, 215, 0, 0.5);/* Borde amarillo */
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contactjk-input:focus,
  .contactjk-textarea:focus {
    border-color: #00ff2a; /* Cambia a verde al hacer foco */
    box-shadow: 0 0 8px rgba(0, 97, 43, 0.4);
  }
  
  /* Textarea específico */
  .contactjk-textarea {
    resize: none;
    height: 100px;
  }
  
  /* Botón de envío */
  .contactjk-button {
    display: inline-block;
    width: 100%;
    background-color: #007BFF; /* Azul */
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .contactjk-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  .contactjk-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  /* Reglas para dispositivos móviles */
  @media screen and (max-width: 768px) {
    .contactjk-form {
        width: 84%; /* Reduce el tamaño del formulario en pantallas pequeñas */
    }
  }
  
  /* Notificación */
  #notification {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
  }
  
  #notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  
  #notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  
  /* Loading spinner para el botón de envío */
  .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  