/* Pesan Form Styles */
.booking {
  max-width: 1200px;
  margin: 6.5% auto auto auto;
  padding: 40px;
  border-radius: 15px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.booking-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 32px;
  color: var(--sec);
  margin-bottom: 10px;
}

/* Field Groups */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.field-label {
  font-weight: 500;
  font-size: 20px;
  color: var(--sec);
}

.field-input,
.field-input-textarea {
  width: 100%;
}

.input-field,
.textarea-field {
  width: 100%;
  background: transparent;
  border: 1px solid var(--sec);
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--sec);
  font-size: 16px;
}

.input-field option {
  background: #333;
  color: var(--sec);
}

.input-field::placeholder,
.textarea-field::placeholder {
  color: #cccccc;
}

.textarea-field {
  min-height: 150px;
  resize: vertical;
}

/* 2 Kolom di layar besar */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row .field-group {
  flex: 1;
}

/* Submit Button */
.kirim-pesan-btn {
  background: var(--prm);
  height: 50px;
  border-radius: 10px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.kirim-pesan-btn:hover {
  background: #ff8800; /* contoh hover */
}

.kirim-pesan-btn .btn-text {
  font-weight: 800;
  color: var(--sec);
  font-size: 18px;
}

/* Focus State */
.input-field:focus,
.textarea-field:focus {
  border-color: var(--prm);
  outline: none;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .booking {
    margin: 15% auto;
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .booking-title {
    font-size: 28px;
  }

  .field-label {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .booking {
    margin: 20% auto;
    padding: 20px;
  }

  .booking-title {
    font-size: 24px;
    text-align: center;
  }

  .kirim-pesan-btn {
    width: 100%;
    height: 55px;
    font-size: 20px;
  }
}
