.bfhx-hero-split-v2 {
    position: relative;
    background: url('https://whimsicalexhibits.eu/wp-content/uploads/2025/06/Frankfurt-min.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* overlay */
.bfhx-hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,10,25,0.95) 35%, rgba(5,10,25,0.6));
}

/* grid layout */
.bfhx-hero-grid-v2 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 60% 40%; /* 🔥 split layout */
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    align-items: center;
}

/* LEFT */
.bfhx-hero-left-v2 {
    color: #fff;
}

/* title */
.bfhx-hero-title-v2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.bfhx-hero-title-v2 span {
    color: #ff2c8b;
}

/* features */
.bfhx-hero-features-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.bfhx-hero-features-v2 span {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255,255,255,0.08);
}

/* button */
.bfhx-hero-btn-v2 {
    display: inline-block;
    padding: 14px 26px;
    background: linear-gradient(90deg, #ff2c8b, #a600ff);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

/* RIGHT SIDE (form area) */
.bfhx-hero-right-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===============================
   CONTACT FORM - CLEAN VERSION
================================ */

.contact-form {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 69, 0, 0.15),
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(255, 69, 0, 0.08);
    z-index: 5;
}

/* ================= HEADER ================= */

.contact-form .form-header {
    position: relative;
    padding: 16px 24px;
    background: #0e0e0e;
    overflow: hidden;
}

/* glowing orbs */
.contact-form .form-header::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.5), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 4s ease-in-out infinite alternate;
}

.contact-form .form-header::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.3), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 5s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(8px,-8px) scale(1.1); }
}

.contact-form .header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form .header-text h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.contact-form .header-text p {
    font-size: 13px;
    margin-top: 4px;
    color: #ccc;
}

/* live badge */
.contact-form .live-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 100px;
}

.contact-form .live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%,100% {opacity:1;}
    50% {opacity:0.3;}
}

/* ================= BODY ================= */

.contact-form .form-body {
    padding: 18px 22px;
}

/* grid */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form .form-group.full {
    grid-column: 1 / -1;
}

/* labels */
.contact-form label {
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
}

/* inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #f9fafb;
    outline: none;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff4500;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,69,0,0.08);
}

/* textarea */
.contact-form textarea {
    height: 70px;
    resize: none;
}

/* phone */
.contact-form .phone-wrapper {
    display: flex;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
}

.contact-form .phone-wrapper input {
    border: none;
    flex: 1;
    background: transparent;
}

/* ================= BUTTON ================= */

.contact-form .submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg,#ff4500,#ff6a00);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,69,0,0.4);
}

/* status */
.contact-form .form-status {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.contact-form .success {
    color: green;
}

.contact-form .error {
    color: red;
}

/* honeypot */
.contact-form .hp-field {
    display: none !important;
}



.bf-cta-wrap {
  position: relative;
  background: url('https://whimsicalexhibits.eu/wp-content/uploads/2025/05/Slides-1920-X-700-02-02.jpeg') center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 95%;
}

/* Gradient Overlay */
.bf-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a1a1a 0%, #1f8f82 50%, #C7EAE6 100%);
  opacity: 0.9;
}

/* Content */
.bf-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.bf-cta-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Buttons */
.bf-cta-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bf-cta-button {
  background: #FF4A00;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.bf-cta-button:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .bf-cta-heading {
    font-size: 22px;
  }

  .bf-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}