Campaign Form HTML

🏥 Select Your Treatment & Accommodation

Treatment Selection

Haartransplantation

**All-Inclusive Package Details:**

  • Consultation & Personalized Plan
  • Preoperative Blood Tests
  • Postoperative Care & Follow-up
  • Essential Medicines & Prescriptions
  • Specialized Care Products Kit
  • Bonnet, Bandage, Cervical Pillow
  • **Maximum Graft** Implantation
  • Painless Local Anesthesia (Comfort Focus)
  • Natural Hairline (Frontal Line) Design
  • 1 Year Follow-up Support
  • **100% Guaranteed** Results
  • VIP Airport Transfer (Arrival & Departure)
  • Luxury Accommodation (Standard Package)

Optional Premium Services:

(+ 500€)
(+ 50€)
(+ 75€)
Rhinoplasty (Nose Job)
  • 3D VECTRA Simulation & Planning
  • Detailed Functional and Aesthetic Analysis
  • General Anesthesia and Hospital Stay
  • Post-Surgery Check-ups and Follow-ups
  • Medical Dressings and Support Garments
  • Dedicated Patient Coordinator
Breast Lift (Mastopexy)
  • Surgeon Consultation and Implant Sizing (if combined)
  • High-Quality Surgical Implements
  • Hospital Room and Operating Theatre Fees
  • Post-Surgery Compression Bra
  • Nursing Care and 24/7 Assistance
Tummy Tuck (Abdominoplasty)
  • Muscle Diastasis Repair (if needed)
  • Excess Skin and Fat Removal
  • General Anesthesia by Certified Anesthesiologist
  • Post-Surgery Abdominal Binder
  • Drain Placement and Removal
Gastric Sleeve (Bariatric Surgery)
  • Full Metabolic Assessment
  • Pre-op Dietician and Psychologist Consultations
  • Laparoscopic Surgical Procedure
  • 3 Nights Hospital Stay (ICU Monitoring)
  • Post-op Vitamin and Supplement Guide
  • 5 Years Remote Follow-up Support

Accommodation Options

Luxury Apartment (Standard Package)2 Nights / 3 Days stay near the clinic. Self-catering amenities.
5* Hotel with Open Buffet BreakfastUpgrade for premium comfort and service. (Based on 2 nights) (+200 € total)
document.addEventListener('DOMContentLoaded', function () { const accordionHeaders = document.querySelectorAll('.accordion-header'); accordionHeaders.forEach(header => { header.addEventListener('click', () => { const item = header.closest('.accordion-item'); const content = header.nextElementSibling; const isActive = item.classList.contains('active'); // Close all other active items document.querySelectorAll('.accordion-item.active').forEach(activeItem => { if (activeItem !== item) { activeItem.classList.remove('active'); activeItem.querySelector('.accordion-content').style.maxHeight = null; } }); // Toggle the clicked item if (isActive) { item.classList.remove('active'); content.style.maxHeight = null; } else { item.classList.add('active'); // Set max-height to the actual scroll height for the transition to work content.style.maxHeight = content.scrollHeight + "px"; } }); }); // Re-calculate height on window resize for responsiveness window.addEventListener('resize', () => { document.querySelectorAll('.accordion-item.active .accordion-content').forEach(content => { // Update max-height dynamically content.style.maxHeight = content.scrollHeight + "px"; }); }); // Initial open state for the first treatment (Hair Transplant) for better UX const firstItem = document.getElementById('accordion-hair'); if(firstItem) { firstItem.classList.add('active'); // Ensure the content height is calculated on load const firstContent = firstItem.querySelector('.accordion-content'); firstContent.style.maxHeight = firstContent.scrollHeight + "px"; } });