Animated Floral Booking Form

Animated Floral Booking Form

A high-end, responsive booking form component featuring a simulated video floral background, interactive pills, and dynamic layouts.

<div class="booking-container">
 <!-- Left Side: Animated Floral "Video" Card -->
 <div class="booking-left">
  <div class="floral-bg">
  </div>
  <div class="sparkles-container">
   <div class="sparkle">
   </div>
   <div class="sparkle">
   </div>
   <div class="sparkle">
   </div>
   <div class="sparkle">
   </div>
  </div>
  <div class="floral-overlay">
  </div>
  <div class="left-content">
   <div class="stars">
    ★★★★★
   </div>
   <p class="subtitle">
    Helped over 100+ businesses
   </p>
   <h1 class="title">
    Turn confusion into
    <br/>
    clarity, today.
   </h1>
   <p class="desc">
    Book a free 30-minute assessment and we'll show you exactly where AI can save you time and money.
   </p>
  </div>
 </div>
 <!-- Right Side: Form -->
 <div class="booking-right">
  <form class="booking-form" id="bookingForm">
   <div class="inputs-row">
    <input placeholder="Name*" required="" type="text"/>
   </div>
   <div class="inputs-row">
    <input placeholder="Email*" required="" type="email"/>
   </div>
   <div class="form-section">
    <label>
     What services are you interested in?
    </label>
    <div class="pills-group" id="servicesPills">
     <button class="pill" type="button">
      AI Assessment
     </button>
     <button class="pill" type="button">
      Workflow Automation
     </button>
     <button class="pill" type="button">
      Custom AI Tools
     </button>
     <button class="pill" type="button">
      Training &amp; Support
     </button>
     <button class="pill" type="button">
      Implementing AI
     </button>
     <button class="pill" type="button">
      All of the above
     </button>
    </div>
   </div>
   <div class="form-section">
    <label>
     What's your biggest automation challenge?
    </label>
    <div class="pills-group" id="challengesPills">
     <button class="pill" type="button">
      Too many manual tasks
     </button>
     <button class="pill" type="button">
      Unclear where to start
     </button>
     <button class="pill" type="button">
      Previous solutions didn't work
     </button>
     <button class="pill" type="button">
      Need to scale operations
     </button>
    </div>
   </div>
   <div class="inputs-row">
    <textarea placeholder="Tell us about your business..."></textarea>
   </div>
   <button class="submit-btn" type="submit">
    Book a call →
   </button>
   <p class="terms">
    By submitting, you agree to our
    <a href="#">
     terms of service.
    </a>
   </p>
  </form>
 </div>
</div>