.contact-section {
    padding: 60px 20px;
    position: relative;
    margin: 20px 0;
  }
  
  .contact-section::before {
    content: "";
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: -1;
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

.contact-container.blur {
  filter: blur(2px); 
  pointer-events: none; 
}
  
  .contact-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    margin-top: -20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .contact-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  .form-group {
    flex: 1;
  }
  
  .form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #f86d08;
    box-shadow: 0 0 0 3px rgba(248, 109, 8, 0.3);
  }
  
  .form-control::placeholder {
    color: #777;
  }
  
  textarea.form-control {
    min-height: 150px;
    border-radius: 20px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 10px auto 0 auto;
    color: #002c49;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    width: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background-color: #f86d08;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }


  
  
.loading-spinner {
  display: none; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3); 
  border-top: 4px solid #f86d08; 
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.submit-btn {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 10px auto 0 auto;
  color: #002c49;
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 18px;
  width: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:disabled {
  cursor: not-allowed;
  background-color: #f86d08;
}



  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 15px;
    }
    
    .contact-title {
      font-size: 28px;
    }
    
    .contact-subtitle {
      font-size: 16px;
    }
    
    .form-control {
      padding: 12px 15px;
    }
    
    .submit-btn {
      padding: 12px 25px;
      font-size: 16px;
    }
  }
  