    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #000;
      color: #fff;
    }

    /* ===== Section ===== */
    .hero-contact {
      min-height: 100vh;
      background: linear-gradient(rgba(5,25,35,.85), rgba(5,25,35,.85)),
                  url('../assets/bg-dance.webp') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 60px 8%;
    }

    .hero-container-contact {
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* ===== Left Content ===== */
    .hero-left-contact h6 {
      letter-spacing: 2px;
      font-size: 14px;
      color: #7ad7ff;
      margin-bottom: 14px;
    }

    .hero-left-contact h2 {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .hero-left-contact p {
      font-size: 14px;
      line-height: 1.8;
      color: #c9d6df;
      max-width: 520px;
      margin-bottom: 30px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 14px;
      color: #bcd3dd;
    }

    .contact-info div {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ===== Form Card ===== */
    .form-card {
      background: rgba(10,35,45,.75);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid #ffe85c;
      backdrop-filter: blur(10px);
    }

    
   .form-card:hover {
  background: linear-gradient(
    135deg,
    rgba(11, 27, 40, 0.85),
    rgba(20, 40, 60, 0.9)
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(233, 184, 110, 0.4);
}


    .form-card h3 {
      margin-bottom: 22px;
      font-size: 20px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      background: transparent;
      border-radius: 10px;
      border: 1px solid rgba(226,195,106,.6);
      color: #fff;
      outline: none;
      font-size: 14px;
    }

    .form-group select option {
  background: #111;
  color: #fff;
}

    .form-group textarea {
      min-height: 120px;
      resize: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #9bb3bd;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid #fff;
      background: transparent;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      transition: .3s ease;
    }

    .submit-btn:hover {
      background: #e2c36a;
      color: #000;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .hero-container {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 50px 6%;
      }
    }

    @media (max-width: 576px) {
      .hero-left h2 {
        font-size: 22px;
      }

      .hero-left p {
        font-size: 13px;
      }

      .form-card {
        padding: 22px;
      }
    }

    /* ===== Tablet & Mobile ===== */
@media (max-width: 992px) {
  .hero-contact {
    padding: 50px 6%;
  }

  .hero-container-contact {
    grid-template-columns: 1fr;   /* Stack vertically */
    gap: 40px;
  }

  .hero-left-contact p {
    max-width: 100%;
  }
}

/* ===== Small Mobile ===== */
@media (max-width: 576px) {
  .hero-left-contact h6 {
    font-size: 12px;
  }

  .hero-left-contact h2 {
    font-size: 22px;
  }

  .hero-left-contact p {
    font-size: 13px;
    line-height: 1.6;
  }

  .contact-info {
    font-size: 13px;
  }

  .form-card {
    padding: 22px;
    border-radius: 16px;
  }

  .form-card h3 {
    font-size: 18px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 13px;
  }
}
