.orange-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  max-width: 1100px;
  margin: auto;
}

.orange-form-left h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #ff6b00;
}

.orange-form-left p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.orange-form-left input,
.orange-form-left textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.orange-form-left textarea {
  min-height: 120px;
  resize: vertical;
}

.orange-form-left button {
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
}

.orange-form-left button:hover {
  background: #e45f00;
}

.orange-gracias {
  display: none;
}

.orange-form-right {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.orange-form-right h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.orange-form-right p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.orange-phone,
.orange-whatsapp {
  margin-top: 20px;
  font-size: 16px;
}

.orange-whatsapp a {
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .orange-form-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
