/* CTA Split Section */
.cta-split {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fa;
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 1100px;
  margin: 50px auto;
  gap: 40px;
}

/* CTA Left Image */
.cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* CTA Form Box */
.cta-form-box {
  background: linear-gradient(135deg, #1d1f27, #2c2f3a);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
}

.cta-form-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-form-box p {
  margin-bottom: 20px;
  color: #ddd;
}

/* CTA Form Styling */
.cta-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form-box input,
.cta-form-box select,
.cta-form-box textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.cta-form-box textarea {
  min-height: 100px;
  resize: vertical;
}

.cta-form-box button {
  background: #ff6b00;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.cta-form-box button:hover {
  background: #e65a00;
}

/* Form Status Message */
#formStatus {
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cta-split {
    flex-direction: column;
    text-align: center;
  }

  .cta-image img {
    max-width: 100%;
  }

  .cta-form-box {
    width: 100%;
  }
}