.ride-contact-sec {
 padding:60px 60px;
  background: linear-gradient(135deg, #455873, #414f72);
}

.ride-contact-wrap {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* FORM */
.ride-form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.ride-form-box h2 {
  margin-bottom: 20px;
}

#rideWhatsappForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#rideWhatsappForm input,
#rideWhatsappForm select,
#rideWhatsappForm textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

#rideWhatsappForm button {
  padding: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

#rideWhatsappForm button:hover {
  opacity: 0.9;
}

/* MAP */
.ride-map-box {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.ride-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SAME HEIGHT FIX */
.ride-contact-wrap > div {
  display: flex;
  flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ride-contact-wrap {
    flex-direction: column;
  }

  .ride-map-box iframe {
    height: 300px;
  }
}