/* Contact Page Hero with Blurred Background */
.contact-hero {
    position: relative;
    background: url('/media/house.jpg') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem 2.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: left;
  }
  
  .contact-form-wrapper h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
  }
  
  .contact-form-wrapper p {
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  .contact-form-wrapper label {
    display: block;
    margin: 0.5rem 0 0.3rem;
    font-weight: bold;
    color: #222;
  }
  
  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form-wrapper button {
    padding: 10px 20px;
    background-color: #0af;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form-wrapper button:hover {
    background-color: #008fcc;
  }

  .back-link {
    color:#000;
    padding: 10px 20px;
    display: inline-block;
    background-color: #0af;
    border-radius: 4px;
  }