Pet Boarding Cost Calculator

Planning a trip and need to board your pet? This calculator helps you estimate the total cost of pet boarding based on accommodation type, length of stay, and additional services. Choose from standard kennels to luxury suites, add activities like extra playtime and walks, and include care services like medication administration. Great for pet boarding facilities to help pet parents understand pricing.

Pets & Animals

Try the Calculator

Pet Boarding Cost Calculator
📍 Your Location
Loading map...
 
📍 Enter address to calculate pick-up/drop-off fee
🐾 Pet Information
 
📅 Stay Details
 
🏨 Accommodation Type
 
🎾 Activities & Extras
💊 Care Services

📊 Cost Breakdown
$ 300.00
$ 0.00
$ 0.00
$ 0.00
💰 Total Boarding Cost
$ 300.00
$60/night
1 dog • 5 nights
Current vaccinations required. Prices vary by facility. Holiday rates apply to major holidays and peak travel periods.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
export function petBoardingCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Pet Boarding Cost Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '📍 Your Location' });
 
locationSection.addRow(row => {
row.addAddress('homeAddress', {
label: 'Home Address',
placeholder: 'Enter your address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: false,
tooltip: 'Required for pick-up/drop-off service'
});
});
 
locationSection.addRow(row => {
row.addTextPanel('transportInfo', {
computedValue: () => {
const addressField = locationSection.address('homeAddress');
const miles = addressField?.distance();
if (miles == null) return '📍 Enter address to calculate pick-up/drop-off fee';
if (miles <= 10) return '📍 Within area - $25 pick-up/drop-off (each way)';
if (miles <= 20) return '📍 Extended area - $40 pick-up/drop-off (each way)';
if (miles <= 30) return '📍 Remote area - $55 pick-up/drop-off (each way)';
return '📍 Long distance - $70+ pick-up/drop-off (each way)';
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'background': '#ecfdf5', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Pet Details Section
const petSection = form.addSubform('pet', { title: '🐾 Pet Information' });
 
petSection.addRow(row => {
row.addDropdown('petType', {
label: 'Pet Type',
options: [
{ id: 'dog', name: 'Dog' },
{ id: 'cat', name: 'Cat' },
{ id: 'bird', name: 'Bird' },
{ id: 'small-animal', name: 'Small Animal (Rabbit, Hamster, Guinea Pig)' },
{ id: 'reptile', name: 'Reptile' },
{ id: 'exotic', name: 'Exotic Pet' }
],
defaultValue: 'dog',
isRequired: true
}, '1fr');
row.addInteger('numberOfPets', {
label: 'Number of Pets',
min: 1,
max: 10,
defaultValue: 1,
tooltip: 'Multiple pets from same household may get discounts'
}, '1fr');
});
 
petSection.addRow(row => {
row.addDropdown('dogSize', {
label: 'Dog Size',
options: [
{ id: 'small', name: 'Small (under 20 lbs)' },
{ id: 'medium', name: 'Medium (20-50 lbs)' },
{ id: 'large', name: 'Large (50-90 lbs)' },
{ id: 'xlarge', name: 'Extra Large (90+ lbs)' }
],
defaultValue: 'medium',
isVisible: () => petSection.dropdown('petType')?.value() === 'dog'
}, '1fr');
row.addCheckbox('puppyOrKitten', {
label: 'Puppy/Kitten (under 1 year)',
defaultValue: false,
tooltip: 'Young animals require extra attention (+15%)',
isVisible: () => {
const type = petSection.dropdown('petType')?.value();
return type === 'dog' || type === 'cat';
}
}, '1fr');
});
 
petSection.addRow(row => {
row.addCheckbox('specialNeeds', {
label: 'Special needs or medical condition',
defaultValue: false,
tooltip: 'Requires medication, special diet, or extra care'
}, '1fr');
row.addCheckbox('aggressive', {
label: 'Requires separate housing',
defaultValue: false,
tooltip: 'Not good with other animals or requires isolation'
}, '1fr');
});
 
// Stay Details Section
const staySection = form.addSubform('stay', { title: '📅 Stay Details' });
 
staySection.addRow(row => {
row.addInteger('nights', {
label: 'Number of Nights',
min: 1,
max: 365,
defaultValue: 5,
isRequired: true
}, '1fr');
row.addDropdown('season', {
label: 'Season',
options: [
{ id: 'regular', name: 'Regular Season' },
{ id: 'holiday', name: 'Holiday Season (+25-50%)' },
{ id: 'summer', name: 'Summer Peak (+15%)' }
],
defaultValue: 'regular',
tooltip: 'Holidays include Thanksgiving, Christmas, New Year\'s, Spring Break'
}, '1fr');
});
 
// Accommodation Type Section
const accommodationSection = form.addSubform('accommodation', { title: '🏨 Accommodation Type' });
 
accommodationSection.addRow(row => {
row.addRadioButton('roomType', {
label: 'Room Type',
options: [
{ id: 'standard', name: 'Standard Kennel ($30-45/night) - Basic enclosed space' },
{ id: 'deluxe', name: 'Deluxe Suite ($50-70/night) - Larger space, raised bed' },
{ id: 'luxury', name: 'Luxury Suite ($75-100/night) - Private room, TV, webcam' },
{ id: 'vip', name: 'VIP Suite ($100-150/night) - Premium amenities, outdoor access' }
],
defaultValue: 'deluxe',
isRequired: true,
isVisible: () => petSection.dropdown('petType')?.value() === 'dog'
});
});
 
accommodationSection.addRow(row => {
row.addRadioButton('catRoomType', {
label: 'Room Type',
options: [
{ id: 'standard', name: 'Standard Condo ($25-35/night) - Multi-level condo' },
{ id: 'deluxe', name: 'Deluxe Condo ($40-55/night) - Large condo with perch' },
{ id: 'luxury', name: 'Luxury Suite ($60-80/night) - Private room, cat tree' }
],
defaultValue: 'deluxe',
isRequired: true,
isVisible: () => petSection.dropdown('petType')?.value() === 'cat'
});
});
 
accommodationSection.addRow(row => {
row.addTextPanel('smallPetRate', {
computedValue: () => 'Small animals, birds, reptiles, and exotics: $15-35/night depending on species and care requirements',
customStyles: { 'font-size': '0.9rem', 'color': '#475569' },
isVisible: () => {
const type = petSection.dropdown('petType')?.value();
return type !== 'dog' && type !== 'cat';
}
});
});
 
// Activities & Extras Section
const activitiesSection = form.addSubform('activities', { title: '🎾 Activities & Extras' });
 
activitiesSection.addRow(row => {
row.addCheckbox('extraPlaytime', {
label: 'Extra Playtime (+$10/day)',
defaultValue: false,
tooltip: '15-minute individual play session',
isVisible: () => {
const type = petSection.dropdown('petType')?.value();
return type === 'dog' || type === 'cat';
}
}, '1fr');
row.addCheckbox('groupPlay', {
label: 'Daycare/Group Play (+$20/day)',
defaultValue: false,
tooltip: 'Supervised socialization with other dogs',
isVisible: () => petSection.dropdown('petType')?.value() === 'dog'
}, '1fr');
});
 
activitiesSection.addRow(row => {
row.addCheckbox('walks', {
label: 'Extra Walks (+$8/walk)',
defaultValue: false,
isVisible: () => petSection.dropdown('petType')?.value() === 'dog'
}, '1fr');
row.addInteger('walkCount', {
label: 'Walks per Day',
min: 1,
max: 5,
defaultValue: 2,
isVisible: () => activitiesSection.checkbox('walks')?.value() && petSection.dropdown('petType')?.value() === 'dog'
}, '1fr');
});
 
activitiesSection.addRow(row => {
row.addCheckbox('grooming', {
label: 'Grooming Service (+$35-75)',
defaultValue: false,
tooltip: 'Bath and brush before pickup'
}, '1fr');
row.addCheckbox('training', {
label: 'Training Sessions (+$30/session)',
defaultValue: false,
tooltip: 'Basic obedience reinforcement',
isVisible: () => petSection.dropdown('petType')?.value() === 'dog'
}, '1fr');
});
 
// Care Services Section
const careSection = form.addSubform('care', { title: '💊 Care Services' });
 
careSection.addRow(row => {
row.addCheckbox('medication', {
label: 'Medication Administration (+$5/day)',
defaultValue: false,
tooltip: 'Oral medications, eye drops, ear drops'
}, '1fr');
row.addCheckbox('insulinInjection', {
label: 'Insulin Injection (+$10/day)',
defaultValue: false
}, '1fr');
});
 
careSection.addRow(row => {
row.addCheckbox('specialDiet', {
label: 'Special Diet Preparation (+$5/day)',
defaultValue: false,
tooltip: 'Owner-provided food, special preparation'
}, '1fr');
row.addCheckbox('webcam', {
label: 'Webcam Access (+$5/stay)',
defaultValue: false,
tooltip: 'Live video check-ins',
isVisible: () => {
const roomType = accommodationSection.radioButton('roomType')?.value();
return roomType !== 'luxury' && roomType !== 'vip';
}
}, '1fr');
});
 
careSection.addRow(row => {
row.addCheckbox('dailyReport', {
label: 'Daily Photo/Report Cards (+$3/day)',
defaultValue: false
}, '1fr');
row.addCheckbox('transportation', {
label: 'Pick-up/Drop-off Service (+$25-50)',
defaultValue: false,
tooltip: 'Distance-based pricing'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate transportation fee (round trip)
const getTransportationFee = () => {
if (!careSection.checkbox('transportation')?.value()) return 0;
const addressField = locationSection.address('homeAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 10) return 50; // $25 each way
if (miles <= 20) return 80; // $40 each way
if (miles <= 30) return 110; // $55 each way
return 140 + Math.floor((miles - 30) / 10) * 20; // $70+ each way
};
 
// Cost Breakdown Section
const breakdownSection = form.addSubform('breakdown', { title: '📊 Cost Breakdown', isCollapsible: true });
 
breakdownSection.addRow(row => {
row.addPriceDisplay('accommodationCost', {
label: 'Accommodation',
computedValue: () => {
const petType = petSection.dropdown('petType')?.value() || 'dog';
const nights = staySection.integer('nights')?.value() || 5;
const numberOfPets = petSection.integer('numberOfPets')?.value() || 1;
const dogSize = petSection.dropdown('dogSize')?.value() || 'medium';
 
let nightlyRate = 0;
 
if (petType === 'dog') {
const roomType = accommodationSection.radioButton('roomType')?.value() || 'deluxe';
const baseRates: Record<string, number> = { standard: 38, deluxe: 60, luxury: 88, vip: 125 };
nightlyRate = baseRates[roomType] || 60;
 
const sizeMultiplier: Record<string, number> = { small: 0.85, medium: 1, large: 1.15, xlarge: 1.3 };
nightlyRate *= sizeMultiplier[dogSize] || 1;
} else if (petType === 'cat') {
const catRoom = accommodationSection.radioButton('catRoomType')?.value() || 'deluxe';
const catRates: Record<string, number> = { standard: 30, deluxe: 48, luxury: 70 };
nightlyRate = catRates[catRoom] || 48;
} else {
nightlyRate = 25;
}
 
const additionalPetDiscount = numberOfPets > 1 ? 0.8 : 1;
return Math.round(nightlyRate * nights * numberOfPets * additionalPetDiscount);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('seasonalAdjustment', {
label: 'Seasonal Adjustment',
computedValue: () => {
const petType = petSection.dropdown('petType')?.value() || 'dog';
const nights = staySection.integer('nights')?.value() || 5;
const season = staySection.dropdown('season')?.value() || 'regular';
const numberOfPets = petSection.integer('numberOfPets')?.value() || 1;
const dogSize = petSection.dropdown('dogSize')?.value() || 'medium';
 
let nightlyRate = 0;
if (petType === 'dog') {
const roomType = accommodationSection.radioButton('roomType')?.value() || 'deluxe';
const baseRates: Record<string, number> = { standard: 38, deluxe: 60, luxury: 88, vip: 125 };
nightlyRate = baseRates[roomType] || 60;
const sizeMultiplier: Record<string, number> = { small: 0.85, medium: 1, large: 1.15, xlarge: 1.3 };
nightlyRate *= sizeMultiplier[dogSize] || 1;
} else if (petType === 'cat') {
const catRoom = accommodationSection.radioButton('catRoomType')?.value() || 'deluxe';
const catRates: Record<string, number> = { standard: 30, deluxe: 48, luxury: 70 };
nightlyRate = catRates[catRoom] || 48;
} else {
nightlyRate = 25;
}
 
const additionalPetDiscount = numberOfPets > 1 ? 0.8 : 1;
const baseTotal = nightlyRate * nights * numberOfPets * additionalPetDiscount;
 
const seasonMultiplier: Record<string, number> = { regular: 0, holiday: 0.35, summer: 0.15 };
return Math.round(baseTotal * (seasonMultiplier[season] || 0));
},
variant: 'default'
}, '1fr');
});
 
breakdownSection.addRow(row => {
row.addPriceDisplay('activitiesCost', {
label: 'Activities',
computedValue: () => {
const nights = staySection.integer('nights')?.value() || 5;
let total = 0;
 
if (activitiesSection.checkbox('extraPlaytime')?.value()) total += 10 * nights;
if (activitiesSection.checkbox('groupPlay')?.value()) total += 20 * nights;
if (activitiesSection.checkbox('walks')?.value()) {
const walkCount = activitiesSection.integer('walkCount')?.value() || 2;
total += 8 * walkCount * nights;
}
if (activitiesSection.checkbox('grooming')?.value()) total += 55;
if (activitiesSection.checkbox('training')?.value()) total += 30 * Math.ceil(nights / 2);
 
return total;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('careCost', {
label: 'Care Services',
computedValue: () => {
const nights = staySection.integer('nights')?.value() || 5;
let total = 0;
 
if (careSection.checkbox('medication')?.value()) total += 5 * nights;
if (careSection.checkbox('insulinInjection')?.value()) total += 10 * nights;
if (careSection.checkbox('specialDiet')?.value()) total += 5 * nights;
if (careSection.checkbox('webcam')?.value()) total += 5;
if (careSection.checkbox('dailyReport')?.value()) total += 3 * nights;
total += getTransportationFee();
 
if (petSection.checkbox('specialNeeds')?.value()) total += 10 * nights;
if (petSection.checkbox('aggressive')?.value()) total += 15 * nights;
 
return total;
},
variant: 'default'
}, '1fr');
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '💰 Total Boarding Cost',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addPriceDisplay('totalCost', {
label: 'Total Cost',
computedValue: () => {
const petType = petSection.dropdown('petType')?.value() || 'dog';
const nights = staySection.integer('nights')?.value() || 5;
const season = staySection.dropdown('season')?.value() || 'regular';
const numberOfPets = petSection.integer('numberOfPets')?.value() || 1;
const dogSize = petSection.dropdown('dogSize')?.value() || 'medium';
const puppyKitten = petSection.checkbox('puppyOrKitten')?.value() || false;
 
let nightlyRate = 0;
if (petType === 'dog') {
const roomType = accommodationSection.radioButton('roomType')?.value() || 'deluxe';
const baseRates: Record<string, number> = { standard: 38, deluxe: 60, luxury: 88, vip: 125 };
nightlyRate = baseRates[roomType] || 60;
const sizeMultiplier: Record<string, number> = { small: 0.85, medium: 1, large: 1.15, xlarge: 1.3 };
nightlyRate *= sizeMultiplier[dogSize] || 1;
} else if (petType === 'cat') {
const catRoom = accommodationSection.radioButton('catRoomType')?.value() || 'deluxe';
const catRates: Record<string, number> = { standard: 30, deluxe: 48, luxury: 70 };
nightlyRate = catRates[catRoom] || 48;
} else {
nightlyRate = 25;
}
 
const additionalPetDiscount = numberOfPets > 1 ? 0.8 : 1;
let accommodationTotal = nightlyRate * nights * numberOfPets * additionalPetDiscount;
 
const seasonMultiplier: Record<string, number> = { regular: 1, holiday: 1.35, summer: 1.15 };
accommodationTotal *= seasonMultiplier[season] || 1;
 
if (puppyKitten) accommodationTotal *= 1.15;
 
let activitiesTotal = 0;
if (activitiesSection.checkbox('extraPlaytime')?.value()) activitiesTotal += 10 * nights;
if (activitiesSection.checkbox('groupPlay')?.value()) activitiesTotal += 20 * nights;
if (activitiesSection.checkbox('walks')?.value()) {
const walkCount = activitiesSection.integer('walkCount')?.value() || 2;
activitiesTotal += 8 * walkCount * nights;
}
if (activitiesSection.checkbox('grooming')?.value()) activitiesTotal += 55;
if (activitiesSection.checkbox('training')?.value()) activitiesTotal += 30 * Math.ceil(nights / 2);
 
let careTotal = 0;
if (careSection.checkbox('medication')?.value()) careTotal += 5 * nights;
if (careSection.checkbox('insulinInjection')?.value()) careTotal += 10 * nights;
if (careSection.checkbox('specialDiet')?.value()) careTotal += 5 * nights;
if (careSection.checkbox('webcam')?.value()) careTotal += 5;
if (careSection.checkbox('dailyReport')?.value()) careTotal += 3 * nights;
careTotal += getTransportationFee();
if (petSection.checkbox('specialNeeds')?.value()) careTotal += 10 * nights;
if (petSection.checkbox('aggressive')?.value()) careTotal += 15 * nights;
 
return Math.round(accommodationTotal + activitiesTotal + careTotal);
},
variant: 'large'
}, '1fr');
row.addTextPanel('perNight', {
label: 'Per Night',
computedValue: () => {
const nights = staySection.integer('nights')?.value() || 5;
const petType = petSection.dropdown('petType')?.value() || 'dog';
const season = staySection.dropdown('season')?.value() || 'regular';
const numberOfPets = petSection.integer('numberOfPets')?.value() || 1;
const dogSize = petSection.dropdown('dogSize')?.value() || 'medium';
 
let nightlyRate = 0;
if (petType === 'dog') {
const roomType = accommodationSection.radioButton('roomType')?.value() || 'deluxe';
const baseRates: Record<string, number> = { standard: 38, deluxe: 60, luxury: 88, vip: 125 };
nightlyRate = baseRates[roomType] || 60;
const sizeMultiplier: Record<string, number> = { small: 0.85, medium: 1, large: 1.15, xlarge: 1.3 };
nightlyRate *= sizeMultiplier[dogSize] || 1;
} else if (petType === 'cat') {
const catRoom = accommodationSection.radioButton('catRoomType')?.value() || 'deluxe';
const catRates: Record<string, number> = { standard: 30, deluxe: 48, luxury: 70 };
nightlyRate = catRates[catRoom] || 48;
} else {
nightlyRate = 25;
}
 
const seasonMultiplier: Record<string, number> = { regular: 1, holiday: 1.35, summer: 1.15 };
nightlyRate *= seasonMultiplier[season] || 1;
 
return `$${Math.round(nightlyRate)}/night`;
},
customStyles: { 'font-size': '1.3rem', 'font-weight': '600', 'text-align': 'center', 'color': '#059669' }
}, '1fr');
});
 
summarySection.addRow(row => {
row.addTextPanel('staySummary', {
computedValue: () => {
const petType = petSection.dropdown('petType')?.value() || 'dog';
const nights = staySection.integer('nights')?.value() || 5;
const numberOfPets = petSection.integer('numberOfPets')?.value() || 1;
 
const petNames: Record<string, string> = {
dog: 'dog', cat: 'cat', bird: 'bird', 'small-animal': 'small animal',
reptile: 'reptile', exotic: 'exotic pet'
};
 
const petLabel = numberOfPets > 1 ? `${numberOfPets} ${petNames[petType]}s` : `1 ${petNames[petType]}`;
return `${petLabel} • ${nights} night${nights > 1 ? 's' : ''}`;
},
customStyles: { 'font-size': '0.95rem', 'text-align': 'center', 'color': '#475569' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Current vaccinations required. Prices vary by facility. Holiday rates apply to major holidays and peak travel periods.',
customStyles: { 'font-size': '0.8rem', 'color': '#94a3b8', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Book Reservation'
});
}
 

Frequently Asked Questions

What vaccinations are required for boarding?

Most facilities require proof of rabies, distemper, and bordetella (kennel cough) for dogs. Cats typically need rabies and FVRCP. Vaccinations must be current and administered at least 48 hours before boarding.

Should I bring my pet's food?

Yes, bringing your pet's regular food is recommended to avoid stomach upset. Most facilities can provide premium food if needed, but sudden diet changes can cause digestive issues.

What's the difference between standard and luxury boarding?

Standard kennels are functional and clean but basic. Luxury suites offer more space, premium bedding, private rooms, webcam access, and additional amenities like TV and outdoor access.

Why do holiday rates cost more?

Holiday periods see extremely high demand and require additional staffing to maintain quality care. Booking early during holidays is strongly recommended and may result in lower rates.

Can I board multiple pets together?

Yes, most facilities allow pets from the same household to share accommodations, often at a discounted rate. This can reduce stress for your pets and save money.