-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1777 lines (1730 loc) · 66.5 KB
/
Copy pathindex.html
File metadata and controls
1777 lines (1730 loc) · 66.5 KB
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" data-scroll-behavior="smooth">
<head>
<!--
SEO + social: meta/OG/Twitter/JSON-LD for crawlers; no server rendering.
Runtime “API”: none — URLs and copy are static. Update canonical + og:url if you change domain.
-->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Pawfect Care Clinic — Friendly veterinary care for dogs, cats & more
| Pets healthcare landing (vanilla JS demo)
</title>
<meta
name="description"
content="Pawfect Care Clinic demo: gentle nose-to-tail checkups, wellness plans, team profiles, services, FAQs, and stories — a responsive, framework-free veterinary landing experience."
/>
<meta
name="keywords"
content="Pawfect Care, veterinary clinic, pet healthcare, dog care, cat care, wellness plans, animal hospital, vanilla JavaScript, HTML5, CSS3, static SPA, responsive web design, Arnob Mahmud"
/>
<meta name="author" content="Arnob Mahmud" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#13746a" />
<link rel="canonical" href="https://pets-healthcare.vercel.app/" />
<link rel="author" href="https://www.arnobmahmud.com" />
<link rel="me" href="mailto:contact@arnobmahmud.com" />
<meta property="og:title" content="Pawfect Care Clinic — Veterinary care for dogs, cats & more" />
<meta
property="og:description"
content="Modern, kind veterinary care demo — services, team, wellness plans, and pet parent stories. Built with vanilla JS as a learning showcase."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pets-healthcare.vercel.app/" />
<meta
property="og:image"
content="https://pets-healthcare.vercel.app/public/logo.png"
/>
<meta property="og:image:alt" content="Pawfect Care Clinic logo" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Pawfect Care Clinic" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Pawfect Care Clinic — Pets healthcare landing demo"
/>
<meta
name="twitter:description"
content="Friendly veterinary care for dogs, cats & more. Responsive vanilla JS / HTML5 / CSS3 showcase."
/>
<meta
name="twitter:image"
content="https://pets-healthcare.vercel.app/public/logo.png"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Pawfect Care Clinic — Friendly veterinary care for dogs, cats & more",
"url": "https://pets-healthcare.vercel.app/",
"description": "Pawfect Care Clinic demo: veterinary landing page with services, team, plans, FAQ, and stories — framework-free SPA.",
"inLanguage": "en",
"isPartOf": {
"@type": "WebSite",
"name": "Pawfect Care Clinic",
"url": "https://pets-healthcare.vercel.app/"
},
"author": {
"@type": "Person",
"name": "Arnob Mahmud",
"url": "https://www.arnobmahmud.com",
"email": "contact@arnobmahmud.com"
}
}
</script>
<link rel="icon" href="/public/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="/public/logo.png" />
<link
rel="preload"
href="/public/fonts/fredoka-600.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/public/fonts/nunito-400.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link rel="preload" href="/public/hero/collage-puppy.jpg" as="image" />
<link rel="preload" href="/public/hero/collage-cat.jpg" as="image" />
<link rel="preload" href="/public/hero/collage-rabbit.jpg" as="image" />
<link rel="preload" href="/public/hero/collage-hamster.jpg" as="image" />
<link rel="preload" href="/public/hero/bg-dog-run.jpg" as="image" />
<link rel="preload" href="/public/hero/bg-dog-chewy.jpg" as="image" />
<script
src="https://kit.fontawesome.com/c1df782baf.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--
Educational note: This page is one long document. JavaScript reads URL paths
(e.g. /team) and scrolls to the matching data-section-id — that is a simple SPA pattern.
-->
<header class="site-header">
<div class="max-w-9xl header-inner">
<a href="/" class="logo" data-route aria-label="Pawfect Care home">
<img
src="/public/logo.png"
width="42"
height="42"
alt="Pawfect Care logo"
/>
<span class="logo-text">
<span class="logo-word logo-word--paw">Paw</span
><span class="logo-word logo-word--fect">fect</span>
<span class="logo-word logo-word--care">Care</span>
</span>
</a>
<nav class="navbar" aria-label="Primary">
<a href="/" data-route data-nav-for="home">Home</a>
<a href="/about" data-route data-nav-for="about">About</a>
<div class="nav-dd" data-dropdown>
<button
type="button"
class="nav-dd-toggle"
data-dropdown-toggle
aria-expanded="false"
aria-haspopup="true"
aria-label="Care types menu"
>
<span class="nav-dd-toggle__text">Care types</span>
<span class="nav-dd-toggle__icon" aria-hidden="true">
<svg
class="nav-dd-toggle__chevron"
width="12"
height="8"
viewBox="0 0 12 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
focusable="false"
>
<path
d="M1 1.5L6 6.5L11 1.5"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
</button>
<div class="nav-dd-panel" data-dropdown-panel role="menu">
<a href="/services" data-route role="menuitem">All services</a>
<a
href="/services"
data-route
data-services-tab="tab-dogs"
role="menuitem"
>Dogs & puppies</a
>
<a
href="/services"
data-route
data-services-tab="tab-cats"
role="menuitem"
>Cats & kittens</a
>
<a
href="/services"
data-route
data-services-tab="tab-small"
role="menuitem"
>Small furries</a
>
</div>
</div>
<a href="/plans" data-route data-nav-for="plans">Plans</a>
<a href="/team" data-route data-nav-for="team">Team</a>
<a href="/stories" data-route data-nav-for="stories">Stories</a>
<a href="/faq" data-route data-nav-for="faq">FAQ</a>
<a href="/contact" data-route data-nav-for="contact">Contact</a>
</nav>
<div class="header-actions">
<div
id="menu-bars"
class="fas fa-bars"
role="button"
tabindex="0"
aria-label="Open menu"
></div>
<span class="cta-shine-wrap">
<a href="/contact" data-route class="btn-paw btn-ripple">
<img
src="/public/paws-white-left.svg"
alt=""
width="20"
height="20"
class="btn-paw__icon"
aria-hidden="true"
/>
Book a visit
</a>
</span>
</div>
</div>
</header>
<main>
<!--
Page map (client-side routes → scroll targets via js/router.js):
home, about, services, plans, team, stories, faq, contact — each uses data-section-id.
Pre-footer commitment banner is decorative CTA only (no separate route).
-->
<!-- Hero: data-section-id matches the router (path / → home) -->
<section
class="hero-shell"
data-hero
data-section-id="home"
aria-label="Welcome"
>
<div class="hero__media" aria-hidden="true">
<div
class="hero__bg-layer hero__bg-layer--active"
data-hero-bg-layer
style="
background-image: url("/public/hero/bg-dog-chewy.jpg");
"
></div>
<div
class="hero__bg-layer"
data-hero-bg-layer
style="
background-image: url("/public/hero/bg-dog-run.jpg");
"
></div>
</div>
<div class="max-w-9xl hero-grid">
<div data-reveal-stagger>
<p class="hero-kicker reveal" data-greeting>
<img
src="/public/paws-white-left.svg"
alt=""
width="20"
height="20"
class="hero-kicker__icon"
aria-hidden="true"
/>
<span class="hero-kicker__text">Welcome, pet parent!</span>
<img
src="/public/paws-white-right.svg"
alt=""
width="20"
height="20"
class="hero-kicker__icon"
aria-hidden="true"
/>
</p>
<h1 class="hero-title reveal">
We
<span class="hero-title__flip" data-hero-title-word>
<span class="hero-title__word-layer is-front">love</span>
<span class="hero-title__word-layer" aria-hidden="true"></span>
</span>
your pets like family
</h1>
<p class="hero-copy reveal">
Gentle exams, clear advice, and cozy vibes — because vet visits
should feel safe, not scary, for fluffy friends of every size.
</p>
<div class="hero-cta reveal">
<span class="cta-shine-wrap">
<a href="/contact" data-route class="btn-paw btn-ripple">
<img
src="/public/paws-white-left.svg"
alt=""
width="20"
height="20"
class="btn-paw__icon"
aria-hidden="true"
/>
Schedule cuddles… uh, checkup
</a>
</span>
<span class="cta-shine-wrap cta-shine-wrap--outline">
<a
href="/services"
data-route
class="btn-outline btn-ripple btn-ripple--outline"
>Explore services</a
>
</span>
</div>
</div>
<!-- Five pet photos: CSS staggers entrance (see css/components.css hero-shot) -->
<div class="hero-gallery" data-reveal-stagger aria-label="Happy pets collage">
<figure class="hero-shot hero-shot--1 reveal">
<img
data-dynamic-img="heroGallery1"
data-fallback-img="dogSmile"
src="/public/hero/collage-puppy.jpg"
width="400"
height="320"
alt="Puppy playing in the grass"
loading="eager"
decoding="async"
/>
</figure>
<figure class="hero-shot hero-shot--2 reveal">
<img
data-dynamic-img="heroGallery2"
data-fallback-img="catHero"
src="/public/hero/collage-cat.jpg"
width="280"
height="280"
alt="Curious cat portrait"
loading="eager"
decoding="async"
/>
</figure>
<figure class="hero-shot hero-shot--3 reveal">
<img
data-dynamic-img="heroGallery3"
data-fallback-img="rabbit"
src="/public/hero/collage-rabbit.jpg"
width="260"
height="260"
alt="Rabbit in soft light"
loading="eager"
decoding="async"
/>
</figure>
<figure class="hero-shot hero-shot--4 reveal">
<img
data-dynamic-img="heroGallery4"
data-fallback-img="hamster"
src="/public/hero/collage-hamster.jpg"
width="300"
height="360"
alt="Hamster with soft bedding"
loading="eager"
decoding="async"
/>
</figure>
<figure class="hero-shot hero-shot--5 reveal">
<img
data-dynamic-img="heroGallery5"
data-fallback-img="fish"
src="/public/hero/bg-dog-run.jpg"
width="320"
height="320"
alt="Clownfish in a coral reef aquarium"
loading="eager"
decoding="async"
/>
</figure>
<!-- Glass nuggets: backdrop-xs + stagger after frames (see components.css) -->
<div
class="hero-gallery-nugget hero-gallery-nugget--1 backdrop-xs reveal"
role="note"
>
<img
src="/public/pets-247.svg"
alt=""
width="22"
height="22"
class="hero-gallery-nugget__icon"
aria-hidden="true"
decoding="async"
/>
<span class="hero-gallery-nugget__label"
>Same-day slots for new patients</span
>
</div>
<div
class="hero-gallery-nugget hero-gallery-nugget--2 backdrop-xs reveal"
role="note"
>
<img
src="/public/pets-star.svg"
alt=""
width="22"
height="22"
class="hero-gallery-nugget__icon"
aria-hidden="true"
decoding="async"
/>
<span class="hero-gallery-nugget__label">Fear-free handling</span>
</div>
<div
class="hero-gallery-nugget hero-gallery-nugget--3 backdrop-xs reveal"
role="note"
>
<img
src="/public/pets-sleeping.svg"
alt=""
width="22"
height="22"
class="hero-gallery-nugget__icon"
aria-hidden="true"
decoding="async"
/>
<span class="hero-gallery-nugget__label"
>Licensed, caring team</span
>
</div>
<div
class="hero-gallery-nugget hero-gallery-nugget--4 backdrop-xs reveal"
role="note"
>
<img
src="/public/pets-house.svg"
alt=""
width="22"
height="22"
class="hero-gallery-nugget__icon"
aria-hidden="true"
decoding="async"
/>
<span class="hero-gallery-nugget__label">Cozy exam rooms</span>
</div>
<div
class="hero-gallery-nugget hero-gallery-nugget--5 backdrop-xs reveal"
role="note"
>
<img
src="/public/pets-bed.svg"
alt=""
width="22"
height="22"
class="hero-gallery-nugget__icon"
aria-hidden="true"
decoding="async"
/>
<span class="hero-gallery-nugget__label"
>Soft beds for recovery naps</span
>
</div>
</div>
</div>
</section>
<!-- Below-hero page decor: bg SVGs under content (see layout.css) -->
<div class="post-hero-bg-decor" aria-hidden="true">
<div class="post-hero-bg-decor__together"></div>
<div class="post-hero-bg-decor__bottom-strip">
<div
class="post-hero-bg-decor__paw post-hero-bg-decor__paw--left"
></div>
<div class="pet-reel" data-pet-reel>
<div class="pet-reel__viewport">
<div class="pet-reel__track"></div>
</div>
</div>
<div
class="post-hero-bg-decor__paw post-hero-bg-decor__paw--right"
></div>
</div>
</div>
<!-- Stagger container: children get .is-visible one after another in JS -->
<section class="section-block section-badges" aria-label="Trust badges">
<div class="max-w-9xl">
<header class="section-badges__head">
<img
src="/public/pets-sleeping.svg"
alt=""
width="64"
height="64"
class="section-badges__mascot reveal"
decoding="async"
aria-hidden="true"
/>
<h2 class="section-title section-badges__title reveal">
Why families trust us
</h2>
</header>
<div class="badge-row" data-reveal-stagger>
<span class="pet-badge reveal"
><i class="fas fa-certificate" aria-hidden="true"></i> Licensed
vets</span
>
<span class="pet-badge reveal"
><i class="fas fa-heart" aria-hidden="true"></i> Fear-free
handling</span
>
<span class="pet-badge reveal"
><i class="fas fa-shield-dog" aria-hidden="true"></i> Vaccine
tracking app</span
>
<span class="pet-badge reveal"
><i class="fas fa-bolt" aria-hidden="true"></i> Urgent same-day
care</span
>
<span class="pet-badge reveal"
><i class="fas fa-carrot" aria-hidden="true"></i> Nutrition
coaching</span
>
<span class="pet-badge reveal"
><i class="fas fa-calendar-check" aria-hidden="true"></i> Easy
online scheduling</span
>
<span class="pet-badge reveal"
><i class="fas fa-file-lines" aria-hidden="true"></i> Plain-language
visit notes</span
>
</div>
</div>
</section>
<!-- About: route /about — brand story, imagery, trust chips -->
<section
class="section-block section-about"
data-section-id="about"
id="about"
>
<div class="max-w-9xl">
<header class="section-about__head reveal">
<img
src="/public/pets-like.svg"
alt=""
width="64"
height="64"
class="section-about__mascot"
decoding="async"
aria-hidden="true"
/>
<h2 class="section-title section-about__title">
Snuggles, science & snacks
</h2>
</header>
<div
class="about-mini-badges"
data-reveal-stagger
aria-label="Care highlights"
>
<span class="about-chip about-chip--mint reveal">
<span
class="about-chip__icon about-chip__icon--star"
aria-hidden="true"
></span>
Low-stress wins
</span>
<span class="about-chip about-chip--peach reveal">
<span
class="about-chip__icon about-chip__icon--food"
aria-hidden="true"
></span>
Treat-positive visits
</span>
<span class="about-chip about-chip--lilac reveal">
<span
class="about-chip__icon about-chip__icon--healthy"
aria-hidden="true"
></span>
Prevention-first care
</span>
<span class="about-chip about-chip--sky reveal">
<span
class="about-chip__icon about-chip__icon--house"
aria-hidden="true"
></span>
Calm clinic spaces
</span>
<span class="about-chip about-chip--butter reveal">
<span
class="about-chip__icon about-chip__icon--satisfied"
aria-hidden="true"
></span>
Happy-tail check-ins
</span>
</div>
<p class="section-lead section-about__lead reveal">
Pawfect Care blends modern medicine with low-stress handling — fewer
white-knuckle car rides, more tail wags at the door.
</p>
<div class="about-grid">
<div class="about-visual reveal">
<img
data-dynamic-img="about"
src=""
width="900"
height="900"
alt="Veterinarian gently examining a calm dog"
/>
</div>
<div class="about-stair" data-reveal-stagger>
<p class="reveal about-stair__lead">
Our team explains every step in plain language, uses tasty
treats as positive reinforcement, and never rushes your
questions — whether it is a sneezy kitten or a senior bunny.
</p>
<ul class="about-list about-list--stair">
<li class="reveal">
Digital records you can read on your phone
</li>
<li class="reveal">
Separate cat & dog waiting zones
</li>
<li class="reveal">
Post-visit summaries with cute paw-print stickers
</li>
<li class="reveal">
Text nudges before vaccines & dental days
</li>
<li class="reveal">
Comfort scoring for seniors (pain watched, not ignored)
</li>
<li class="reveal">
Photo check-ins when your pet stays for the day
</li>
<li class="reveal">
Warm towel snuggles after bath & tidy-up grooms
</li>
<li class="reveal">
Video consults for shy pets who panic in the car
</li>
<li class="reveal">
Kid-friendly handouts so little humans feel included
</li>
<li class="reveal">
Payment plans when surprises pop up (we get it)
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Services: route /services — tab carousel + species panels (js/ui.js initTabs) -->
<section
class="section-block section-services"
data-section-id="services"
id="services"
>
<div class="max-w-9xl">
<header class="section-services__head reveal">
<img
src="/public/pets-house.svg"
alt=""
width="64"
height="64"
class="section-services__mascot"
decoding="async"
aria-hidden="true"
/>
<h2 class="section-title section-services__title">
Services that cover every whisker
</h2>
</header>
<div
class="about-mini-badges services-mini-badges"
data-reveal-stagger
aria-label="What we bring to every visit"
>
<span class="about-chip about-chip--mint reveal">
<span
class="about-chip__icon about-chip__icon--star"
aria-hidden="true"
></span>
Low-stress wins
</span>
<span class="about-chip about-chip--peach reveal">
<span
class="about-chip__icon about-chip__icon--food"
aria-hidden="true"
></span>
Treat-positive visits
</span>
<span class="about-chip about-chip--lilac reveal">
<span
class="about-chip__icon about-chip__icon--healthy"
aria-hidden="true"
></span>
Prevention-first care
</span>
<span class="about-chip about-chip--sky reveal">
<span
class="about-chip__icon about-chip__icon--house"
aria-hidden="true"
></span>
Calm clinic spaces
</span>
<span class="about-chip about-chip--butter reveal">
<span
class="about-chip__icon about-chip__icon--satisfied"
aria-hidden="true"
></span>
Happy-tail check-ins
</span>
</div>
<p class="section-lead section-services__lead reveal">
From giant breeds to pocket pets, we match exams, vaccines, and
follow-up plans to the species on your couch — same team, same
plain-language notes, zero guesswork about what happens next.
</p>
<div
data-tabs
data-tabs-carousel
data-tabs-interval="5600"
class="services-tabs"
>
<div
class="services-tabs__scroll-chrome reveal"
data-reveal-repeat
>
<div
class="tabs-head"
role="tablist"
aria-label="Services by companion type"
>
<button
type="button"
class="tab-btn is-active"
id="services-tab-dogs"
role="tab"
aria-selected="true"
aria-controls="tab-dogs"
data-tab-target="tab-dogs"
>
Dogs
</button>
<button
type="button"
class="tab-btn"
id="services-tab-cats"
role="tab"
aria-selected="false"
aria-controls="tab-cats"
data-tab-target="tab-cats"
>
Cats
</button>
<button
type="button"
class="tab-btn"
id="services-tab-small"
role="tab"
aria-selected="false"
aria-controls="tab-small"
data-tab-target="tab-small"
>
Small pets
</button>
</div>
<div class="tab-panels-shell">
<div class="tab-panels-viewport">
<div class="tab-panels-stack">
<div
id="tab-dogs"
class="tab-panel is-active"
data-tab-panel
role="tabpanel"
aria-labelledby="services-tab-dogs"
aria-hidden="false"
>
<div class="service-mini-grid" data-reveal-stagger>
<div
class="service-pill service-pill--nugget service-pill--nugget-1 backdrop-xs reveal"
>
<i class="fas fa-stethoscope" aria-hidden="true"></i>
<div>
<h4>Wellness exams</h4>
<p>
Nose-to-tail checks, weight trends, and playful
mobility games.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-2 backdrop-xs reveal"
>
<i class="fas fa-syringe" aria-hidden="true"></i>
<div>
<h4>Vaccines & boosters</h4>
<p>
Personalized schedules based on lifestyle — park
pups vs. couch potatoes.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-3 backdrop-xs reveal"
>
<i class="fas fa-tooth" aria-hidden="true"></i>
<div>
<h4>Dental sparkle</h4>
<p>
Scale & polish with cozy warming blankets
afterward.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-4 backdrop-xs reveal"
>
<i class="fas fa-bandage" aria-hidden="true"></i>
<div>
<h4>Minor surgery</h4>
<p>
Clear discharge sheets and text updates while you
grab coffee.
</p>
</div>
</div>
</div>
</div>
<div
id="tab-cats"
class="tab-panel"
data-tab-panel
role="tabpanel"
aria-labelledby="services-tab-cats"
aria-hidden="true"
>
<div class="service-mini-grid" data-reveal-stagger>
<div
class="service-pill service-pill--nugget service-pill--nugget-1 backdrop-xs reveal"
>
<i class="fas fa-cat" aria-hidden="true"></i>
<div>
<h4>Stealth-mode exams</h4>
<p>
Soft mats, pheromone diffusers, and quiet rooms for
shy kitties.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-2 backdrop-xs reveal"
>
<i class="fas fa-droplet" aria-hidden="true"></i>
<div>
<h4>Hydration & kidney care</h4>
<p>
At-home fountain tips plus labs when we need a clear
picture.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-3 backdrop-xs reveal"
>
<i class="fas fa-paw" aria-hidden="true"></i>
<div>
<h4>Nail & coat spa</h4>
<p>
Low-stress trims — treats included, attitude
optional.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-4 backdrop-xs reveal"
>
<i class="fas fa-flask" aria-hidden="true"></i>
<div>
<h4>Thyroid & senior labs</h4>
<p>
Trending numbers for aging cats so we catch shifts
before they steal spunk.
</p>
</div>
</div>
</div>
</div>
<div
id="tab-small"
class="tab-panel"
data-tab-panel
role="tabpanel"
aria-labelledby="services-tab-small"
aria-hidden="true"
>
<div class="service-mini-grid" data-reveal-stagger>
<div
class="service-pill service-pill--nugget service-pill--nugget-1 backdrop-xs reveal"
>
<i class="fas fa-carrot" aria-hidden="true"></i>
<div>
<h4>Rabbits & rodents</h4>
<p>
Tooth alignment checks, hay-forward diets, and
habitat hygiene coaching.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-2 backdrop-xs reveal"
>
<i class="fas fa-feather" aria-hidden="true"></i>
<div>
<h4>Bird beak & wing</h4>
<p>
Partner avian vets when feathers need extra love or
a second opinion.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-3 backdrop-xs reveal"
>
<i class="fas fa-sun" aria-hidden="true"></i>
<div>
<h4>Reptiles & amphibians</h4>
<p>
UV, heat gradients, and shedding checks — husbandry
notes you can hand to any sitter.
</p>
</div>
</div>
<div
class="service-pill service-pill--nugget service-pill--nugget-4 backdrop-xs reveal"
>
<i class="fas fa-heart" aria-hidden="true"></i>
<div>
<h4>Ferrets & pocket friends</h4>
<p>
Annuals, vaccines by species, and dental awareness
before little teeth become big bills.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Plans: route /plans — comparison table; keyboard scroll helper in js/ui.js -->
<section
class="section-block section-plans"
data-section-id="plans"
id="plans"
>
<div class="max-w-9xl">
<header class="section-plans__head reveal">
<img
src="/public/pets-bed.svg"
alt=""
width="64"
height="64"
class="section-services__mascot"
decoding="async"
aria-hidden="true"
/>
<h2 class="section-title section-plans__title">
Wellness plans (human treats not included)
</h2>
</header>
<div
class="about-mini-badges plans-mini-badges"
data-reveal-stagger
aria-label="What membership includes"
>
<span class="about-chip about-chip--mint reveal">
<span
class="about-chip__icon about-chip__icon--star"
aria-hidden="true"
></span>
Bundle & save
</span>
<span class="about-chip about-chip--peach reveal">
<span
class="about-chip__icon about-chip__icon--food"
aria-hidden="true"
></span>
Month-to-month
</span>
<span class="about-chip about-chip--lilac reveal">
<span
class="about-chip__icon about-chip__icon--healthy"
aria-hidden="true"
></span>
Prevention-first
</span>