-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1015 lines (957 loc) · 59.2 KB
/
Copy pathindex.html
File metadata and controls
1015 lines (957 loc) · 59.2 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">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NDQ7PTQM');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pool Cage Rescreen & Super Gutters Tampa Bay | Screen Team</title>
<meta name="description" content="Full pool cage rescreens, new enclosure coordination & super gutters across Tampa Bay. Chris Westcott on every job. Call (727) 386-6562.">
<link rel="alternate" type="text/plain" href="/llms.txt" title="LLM site summary">
<link rel="alternate" type="text/plain" href="/ai.txt" title="AI crawler summary">
<link rel="canonical" href="https://screenteamllc.com/">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://screenteamllc.com/">
<meta property="og:title" content="Pool Cage Rescreen & Super Gutters Tampa Bay | Screen Team">
<meta property="og:description" content="Full pool cage rescreens, new enclosure coordination & super gutters across Tampa Bay. Chris Westcott on every job. Call (727) 386-6562.">
<meta property="og:image" content="https://screenteamllc.com/Images/ScreenTeamBanner.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="The Screen Team LLC">
<meta property="og:locale" content="en_US">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Pool Cage Rescreen & Super Gutters Tampa Bay | Screen Team">
<meta name="twitter:description" content="Full pool cage rescreens, new enclosure coordination & super gutters across Tampa Bay. Chris Westcott on every job. Call (727) 386-6562.">
<meta name="twitter:image" content="https://screenteamllc.com/Images/ScreenTeamBanner.png">
<!-- SEO -->
<meta name="keywords" content="screen repair Tampa Bay, pool cage rescreen, lanai screen repair, window screen replacement, garage screen Tampa, Chris Westcott">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="msvalidate.01" content="6B39337A4AEBE847B61A39325A8B0689">
<meta name="author" content="The Screen Team LLC">
<meta name="geo.region" content="US-FL">
<meta name="geo.placename" content="New Port Richey, Florida">
<meta name="geo.position" content="28.2520;-82.7265">
<meta name="ICBM" content="28.2520, -82.7265">
<!-- JSON-LD entity graph (Organization, LocalBusiness, WebSite, WebPage, FAQPage) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://screenteamllc.com/#organization",
"name": "The Screen Team LLC",
"legalName": "The Screen Team LLC",
"url": "https://screenteamllc.com",
"logo": "https://screenteamllc.com/Images/Logo.png",
"image": "https://screenteamllc.com/Images/ScreenTeamBanner.png",
"telephone": "+1-727-386-6562",
"email": "chris@screenteamllc.com",
"founder": {"@id": "https://screenteamllc.com/about.html#person"},
"contactPoint": {"@id": "https://screenteamllc.com/contact.html#contact-point"},
"sameAs": [
"https://x.com/ScreenTeamLLC",
"https://www.facebook.com/profile.php?id=61588867359684",
"https://www.linkedin.com/company/screen-team-llc/?viewAsMember=true",
"https://nextdoor.com/page/screen-team-llc-safety-harbor-fl"
]
},
{
"@type": "HomeAndConstructionBusiness",
"@id": "https://screenteamllc.com/#business",
"parentOrganization": {"@id": "https://screenteamllc.com/#organization"},
"name": "The Screen Team LLC",
"description": "The Screen Team LLC provides professional screen repair and enclosure services throughout Tampa Bay - rescreens, pool enclosures, screen lanais, window screens, garage screens, and gutter work.",
"url": "https://screenteamllc.com",
"telephone": "+1-727-386-6562",
"email": "chris@screenteamllc.com",
"address": {
"@type": "PostalAddress",
"addressLocality": "New Port Richey",
"addressRegion": "FL",
"addressCountry": "US"
},
"image": "https://screenteamllc.com/Images/ScreenTeamBanner.png",
"logo": "https://screenteamllc.com/Images/Logo.png",
"priceRange": "$$",
"openingHours": "Mo-Sa 07:00-18:00",
"geo": {
"@type": "GeoCoordinates",
"latitude": 28.2520,
"longitude": -82.7265
},
"hasMap": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d451015.1659499797!2d-83.02166183365341!3d27.976881443101366",
"founder": {"@id": "https://screenteamllc.com/about.html#person"},
"contactPoint": {
"@type": "ContactPoint",
"@id": "https://screenteamllc.com/contact.html#contact-point",
"contactType": "customer service",
"telephone": "+1-727-386-6562",
"email": "chris@screenteamllc.com",
"availableLanguage": ["en-US"],
"areaServed": "Tampa Bay, FL"
},
"serviceArea": {
"@type": "AdministrativeArea",
"name": "Tampa Bay Area, FL"
},
"areaServed": [
"New Port Richey, FL",
"St. Petersburg, FL",
"Clearwater, FL",
"Tampa, FL",
"Largo, FL",
"Dunedin, FL",
"Safety Harbor, FL",
"Palm Harbor, FL",
"Oldsmar, FL",
"Tarpon Springs, FL",
"Seminole, FL",
"Pinellas Park, FL",
"Gulfport, FL",
"Brandon, FL",
"Wesley Chapel, FL",
"Holiday, FL",
"Hudson, FL",
"Land O Lakes, FL",
"Belleair, FL",
"Pasco County, FL",
"Pinellas County, FL",
"Hillsborough County, FL"
],
"hasOfferCatalog": {"@id": "https://screenteamllc.com/pricing.html#offers"},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "3",
"bestRating": "5"
},
"review": [
{
"@type": "Review",
"author": {"@type": "Person", "name": "M Cully"},
"datePublished": "2026-07-20",
"reviewBody": "Chris was great.Will use him again.",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
}
},
{
"@type": "Review",
"author": {"@type": "Person", "name": "Becky Garwood"},
"datePublished": "2026-07-09",
"reviewBody": "What incredible professionalism and craftsmanship! I am so glad I found Chris and the Screen Team. They are very experienced and make the whole process easy and fast. Thank you! Highly recommended.",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
}
},
{
"@type": "Review",
"author": {"@type": "Person", "name": "Patti Silliman"},
"datePublished": "2026-05-22",
"reviewBody": "Helped me out so much screening in my patio…. Good bye love bugs!",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
}
}
],
"knowsAbout": [
"Full pool cage rescreens",
"Super gutters",
"New pool cage installation",
"Screen enclosure installation",
"Pool cage repair",
"Rescreens",
"Screen lanais",
"Window screens",
"Garage screens",
"Gutter work"
],
"sameAs": [
"https://x.com/ScreenTeamLLC",
"https://www.facebook.com/profile.php?id=61588867359684",
"https://www.linkedin.com/company/screen-team-llc/?viewAsMember=true",
"https://nextdoor.com/page/screen-team-llc-safety-harbor-fl"
]
},
{
"@type": "WebSite",
"@id": "https://screenteamllc.com/#website",
"url": "https://screenteamllc.com/",
"name": "The Screen Team LLC",
"description": "Full pool cage rescreens, partner-coordinated new enclosures, super gutters, and screen repair across Tampa Bay.",
"publisher": {"@id": "https://screenteamllc.com/#business"},
"inLanguage": "en-US"
},
{
"@type": "BreadcrumbList",
"@id": "https://screenteamllc.com/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://screenteamllc.com/"
}
]
},
{
"@type": "WebPage",
"@id": "https://screenteamllc.com/#webpage",
"url": "https://screenteamllc.com/",
"name": "Screen Repair Tampa Bay | Pool Enclosures | Screen Team",
"description": "Screen repair, rescreens, pool enclosures, lanais, and window screens across Tampa Bay. Call Chris Westcott at (727) 386-6562.",
"isPartOf": {"@id": "https://screenteamllc.com/#website"},
"about": {"@id": "https://screenteamllc.com/#business"},
"breadcrumb": {"@id": "https://screenteamllc.com/#breadcrumb"},
"publisher": {"@id": "https://screenteamllc.com/#organization"},
"inLanguage": "en-US"
},
{
"@type": "FAQPage",
"@id": "https://screenteamllc.com/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What areas does The Screen Team serve?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We serve the greater Tampa Bay area including St. Petersburg, Clearwater, Largo, Dunedin, Safety Harbor, Palm Harbor, Oldsmar, Tarpon Springs, Seminole, and surrounding Pinellas and Hillsborough County communities."
}
},
{
"@type": "Question",
"name": "Does The Screen Team offer free estimates?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes - call or text Chris Westcott directly at (727) 386-6562, or fill out the form on our website. Chris will assess the job and give you a clear quote before any work begins."
}
},
{
"@type": "Question",
"name": "How long does a typical rescreen job take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most standard rescreen jobs - a pool cage, lanai, or porch - are completed in a single day. Larger or more complex enclosures may take a day or two."
}
},
{
"@type": "Question",
"name": "Does The Screen Team warranty their work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. We stand behind our workmanship. If something isn't right after the job is done, call Chris and it will be made right. See our Service Guarantee page for full details."
}
},
{
"@type": "Question",
"name": "What type of screen material do you use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We use fiberglass and aluminum screening depending on the application. Fiberglass is standard for most residential enclosures. Aluminum is a stronger option where pet resistance or added durability is needed. Chris will recommend the right material for your situation."
}
},
{
"@type": "Question",
"name": "Can you repair just one or two damaged screen panels?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Absolutely. You don't need to replace the entire enclosure for a few torn or damaged panels. We assess what actually needs to be done and repair only what's needed."
}
},
{
"@type": "Question",
"name": "How do I know if I need a rescreen or a full structural repair?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Rescreening handles damaged or worn screen material. Structural issues — bent or broken aluminum framing, damaged posts, or collapsed sections — are separate. Chris will inspect and tell you exactly what the job calls for during your estimate."
}
},
{
"@type": "Question",
"name": "What payment methods do you accept?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We accept cash, check, and major credit/debit cards. Payment is collected upon completion of the work."
}
}
]
}
]
}
</script>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Images/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="Images/apple-touch-icon.png">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#3da8d8">
<meta name="msapplication-TileColor" content="#070d18">
<link rel="sitemap" type="application/xml" title="Sitemap" href="https://screenteamllc.com/sitemap.xml">
<!-- Fonts — async to avoid render-blocking -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" as="image" href="Images/ScreenTeamBanner-mobile.webp" fetchpriority="high" media="(max-width: 768px)">
<link rel="preload" as="image" href="Images/ScreenTeamBanner.webp" fetchpriority="high" media="(min-width: 769px)">
<link rel="stylesheet" href="styles.css">
<!-- Google Analytics 4 --> <!-- Microsoft Clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "x61prei2pi");
</script>
</head>
<body class="home-landing">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDQ7PTQM"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<a class="skip-nav" href="#main-content">Skip to main content</a>
<div id="site-header-include"></div>
<main id="main-content">
<!-- ====== HERO (desktop: 4-panel banner | mobile: single portrait banner) ====== -->
<section class="hero" aria-label="Introduction">
<div class="hero-panels" aria-hidden="true">
<div class="hero-panel hero-panel--left hero-panel--photo">
<img src="Images/gallery/20221018_121328.jpg" alt="" width="600" height="450" loading="eager" decoding="async" role="presentation">
</div>
<div class="hero-panel hero-panel--top hero-panel--photo">
<img src="Images/gallery/20220816_113149.jpg" alt="" width="600" height="450" loading="eager" decoding="async" role="presentation">
</div>
<div class="hero-panel hero-panel--bottom hero-panel--photo">
<img src="Images/gallery/20220406_152213.jpg" alt="" width="600" height="450" loading="eager" decoding="async" role="presentation">
</div>
<div class="hero-panel hero-panel--right hero-panel--photo">
<img src="Images/gallery/PXL_20240909_160616822.PANO.jpg" alt="" width="1200" height="450" loading="eager" decoding="async" role="presentation">
</div>
</div>
<div class="hero-cutout-wrap" aria-hidden="true">
<img class="hero-cutout" src="Images/ScreenTeamBanner-mobile-cutout.webp" alt="" width="645" height="889" loading="eager" decoding="async" role="presentation">
</div>
<div class="hero-overlay" aria-hidden="true"></div>
<div class="hero-content">
<div class="container hero-inner">
<aside class="hero-card hero-enter hero-enter--from-left hero-enter--d0" aria-label="Get a free quote" aria-labelledby="hero-quote-title">
<p class="card-eyebrow">Get a free quote</p>
<p class="card-name" id="hero-quote-title">Talk to Chris Today</p>
<p class="card-note">Fill out the form and Chris will get back to you to discuss the job.</p>
<form
class="contact-form"
action="https://formspree.io/f/xdabopjp"
method="POST"
id="hero-contact-form"
>
<div class="form-group">
<label for="cf-name">Your Name</label>
<input type="text" id="cf-name" name="name" placeholder="First and last name" required autocomplete="name">
</div>
<div class="form-group">
<label for="cf-phone">Phone Number</label>
<input type="tel" id="cf-phone" name="phone" placeholder="(727) 000-0000" autocomplete="tel">
</div>
<div class="form-group">
<label for="cf-service">Service Needed</label>
<select id="cf-service" name="service" required>
<option value="" disabled selected>Select a service...</option>
<option>Full Pool Cage Rescreen</option>
<option>New Pool Cage</option>
<option>Super Gutters</option>
<option>Super Gutter Repair</option>
<option>Screen Enclosure Installation</option>
<option>Rescreens</option>
<option>Pool Enclosures</option>
<option>Screen Lanais</option>
<option>Window Screens</option>
<option>Garage Screens</option>
<option>Gutter Work</option>
<option>Not sure - need advice</option>
</select>
</div>
<div class="form-group">
<label for="cf-message">Tell us about the job</label>
<textarea id="cf-message" name="message" placeholder="What needs to be done? Location, size, condition..." rows="3"></textarea>
</div>
<input type="hidden" name="_subject" value="New quote request - The Screen Team LLC">
<input type="hidden" name="_next" value="https://screenteamllc.com/thank-you.html">
<div class="honeypot-field" aria-hidden="true">
<label for="cf-gotcha">Leave this field blank</label>
<input type="text" id="cf-gotcha" name="_gotcha" tabindex="-1" autocomplete="off">
</div>
<button type="submit" class="btn btn-primary btn-full">Send My Request</button>
<p class="form-note">Or call directly: <a href="tel:7273866562">(727) 386-6562</a></p>
</form>
<div class="form-success" id="form-success" aria-live="polite" hidden>
<p class="form-success-msg">Thanks! Chris will be in touch shortly.</p>
</div>
</aside>
<div class="hero-copy">
<p class="eyebrow hero-enter hero-enter--from-left hero-enter--d1">Full Cage Rescreens · New Enclosures · Super Gutters · Small Jobs Welcome</p>
<h1 class="hero-enter hero-enter--from-right hero-enter--d1"><span class="h1-keyword">Pool Cage & Super Gutters</span><span class="h1-brand">The Screen<br>Team <span class="h1-accent">LLC</span></span></h1>
<p class="hero-sub hero-enter hero-enter--from-right hero-enter--d14">
Tampa Bay specialists for full pool cage rescreens, partner-coordinated new enclosures, and structural super gutters.
Chris Westcott quotes and works every job — small panel fixes welcome too.
</p>
<div class="hero-actions">
<a class="btn btn-primary hero-enter hero-enter--from-left hero-enter--d17" href="tel:7273866562">Call Chris Now</a>
<a class="btn btn-ghost hero-enter hero-enter--from-right hero-enter--d17" href="full-pool-cage-rescreen.html">Full Cage Quote</a>
</div>
<div class="trust-row">
<div class="trust-item hero-enter hero-enter--from-left hero-enter--d17">
<strong>Free</strong>
<span>Estimates</span>
</div>
<div class="trust-divider" aria-hidden="true"></div>
<div class="trust-item hero-enter hero-enter--from-right hero-enter--d17">
<strong>Direct</strong>
<span>Owner contact</span>
</div>
<div class="trust-divider" aria-hidden="true"></div>
<div class="trust-item hero-enter hero-enter--from-right hero-enter--d17">
<strong>3</strong>
<span>Counties served</span>
</div>
</div>
<div class="hero-social hero-enter hero-enter--from-bottom hero-enter--d14">
<span class="hero-social-label">Follow us</span>
<div class="social-icons">
<a href="https://x.com/ScreenTeamLLC" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="X (Twitter)"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a>
<a href="https://www.facebook.com/profile.php?id=61588867359684" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="Facebook"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg></a>
<a href="https://www.linkedin.com/company/screen-team-llc/?viewAsMember=true" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg></a>
<a href="https://nextdoor.com/page/screen-team-llc-safety-harbor-fl" class="social-icon" target="_blank" rel="noopener noreferrer" aria-label="Nextdoor"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="trust-strip" aria-label="Trust highlights">
<div class="container trust-strip-grid">
<div class="strip-slide stagger-1">
<span>Service area</span>
<strong>Tampa Bay</strong>
</div>
<div class="strip-slide stagger-2">
<span>Contact</span>
<strong>Direct Line</strong>
</div>
<div class="strip-slide stagger-3">
<span>Estimates</span>
<strong>Free Quotes</strong>
</div>
<div class="strip-slide stagger-4">
<span>Services</span>
<strong>Enclosures + Gutters</strong>
</div>
</div>
</section>
<!-- ====== INTENT STRIP ====== -->
<section class="st-intent-strip" aria-label="Popular enclosure and gutter searches">
<div class="container st-intent-strip__inner">
<a class="strip-slide stagger-1" href="full-pool-cage-rescreen.html"><strong>Full cage rescreen</strong><span>Large enclosure jobs</span></a>
<a class="strip-slide stagger-2" href="super-gutters.html"><strong>Super gutters</strong><span>Structural cage gutters</span></a>
<a class="strip-slide stagger-3" href="new-pool-cage-installation.html"><strong>New pool cage</strong><span>Partner-coordinated builds</span></a>
<a class="strip-slide stagger-4" href="rescreens.html"><strong>Pool cage rescreen</strong><span>Full & partial</span></a>
<a class="strip-slide stagger-1" href="super-gutter-installation.html"><strong>Super gutter install</strong><span>7" structural systems</span></a>
<a class="strip-slide stagger-2" href="two-story-pool-cage-rescreen.html"><strong>Two-story cages</strong><span>Tall ladder work</span></a>
<a class="strip-slide stagger-3" href="screen-enclosure-installation.html"><strong>Enclosure install</strong><span>New screen structures</span></a>
<a class="strip-slide stagger-4" href="pool-cage-gutter-replacement.html"><strong>Cage gutter replace</strong><span>Stop overflow & sag</span></a>
<a class="strip-slide stagger-1" href="pinellas-county-screen-repair.html"><strong>Pinellas County</strong><span>County-wide coverage</span></a>
<a class="strip-slide stagger-2" href="pasco-county-screen-repair.html"><strong>Pasco County</strong><span>Home-base scheduling</span></a>
</div>
</section>
<!-- ====== SERVICES ====== -->
<section id="services" class="services-section section-shell">
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">What we do</p>
<h2 class="reveal-left stagger-1">Enclosures, Super Gutters & Screen Services</h2>
<p class="reveal stagger-2">Priority work: full cage rescreens, new enclosure coordination, and structural super gutters. Small jobs still welcome. <a href="services.html">Browse all services</a>.</p>
</div>
<div class="services-grid">
<a class="service-card service-card--media slide-enter slide-enter--left stagger-1" href="full-pool-cage-rescreen.html">
<div class="service-card-media" style="background-image: url('Images/preview/services/rescreens.jpg')" role="img" aria-label="Full pool cage rescreen"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M3 15h18M9 3v18M15 3v18"/>
</svg>
</div>
<h3>Full Cage Rescreens</h3>
<p>Large and full pool cage mesh replacements — the high-ticket jobs Chris schedules first across Tampa Bay.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--right stagger-2" href="super-gutters.html">
<div class="service-card-media" style="background-image: url('Images/preview/services/gutter-work.jpg')" role="img" aria-label="Super gutter on pool cage"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 12h18M5 12v6a2 2 0 002 2h10a2 2 0 002-2v-6M7 12V8a5 5 0 0110 0v4"/>
</svg>
</div>
<h3>Super Gutters</h3>
<p>Structural gutters that support your enclosure and move Florida storm volume — install, repair, and replacement.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--left stagger-3" href="new-pool-cage-installation.html">
<div class="service-card-media" style="background-image: url('Images/preview/services/pool-enclosures.jpg')" role="img" aria-label="New pool cage installation"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/>
</svg>
</div>
<h3>New Pool Cages</h3>
<p>New enclosure builds scoped by Screen Team and completed with licensed partners when permits and engineering apply.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--right stagger-1" href="rescreens.html">
<div class="service-card-media" style="background-image: url('Images/gallery/20221223_163807.jpg')" role="img" aria-label="Rescreen project"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M3 15h18M9 3v18M15 3v18"/>
</svg>
</div>
<h3>Rescreens</h3>
<p>Partial and full rescreens for pool cages, lanais, and porches on sound aluminum frames.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--top stagger-3" href="screen-lanais.html">
<div class="service-card-media" style="background-image: url('Images/preview/services/screen-lanais.jpg')" role="img" aria-label="Screen lanai project"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z"/>
</svg>
</div>
<h3>Screen Lanais</h3>
<p>Restore your lanai screen panels - clean lines, no torn sections, no flapping edges catching the Florida breeze.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--bottom stagger-4" href="window-screens.html">
<div class="service-card-media service-card-media--promo" style="background-image: url('Images/st-windowscreen.webp')" role="img" aria-label="Window screen repair and replacement"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/>
</svg>
</div>
<h3>Window Screens</h3>
<p>Repair or replace window screens that have torn, warped, or come loose due to Florida's heat and storms.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--left stagger-1" href="garage-screens.html">
<div class="service-card-media" style="background-image: url('Images/preview/services/garage-screens.jpg')" role="img" aria-label="Residential garage exterior"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 17H3a2 2 0 01-2-2V5a2 2 0 012-2h11a2 2 0 012 2v3"/><rect x="9" y="11" width="14" height="10" rx="1"/>
</svg>
</div>
<h3>Garage Screens</h3>
<p>Add or repair garage screen systems that let airflow in while keeping pests and debris outside where they belong.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--right stagger-2" href="gutter-work.html">
<div class="service-card-media service-card-media--promo" style="background-image: url('Images/st-gutters.webp')" role="img" aria-label="Gutter repair and roofline work"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M22 12H2"/><path d="M5 12V6a1 1 0 011-1h12a1 1 0 011 1v6"/><path d="M2 12v2a2 2 0 002 2h16a2 2 0 002-2v-2"/>
</svg>
</div>
<h3>Gutter Work</h3>
<p>Gutter-related exterior work handled as part of a complete service call - ask Chris about your specific situation.</p>
</div>
</a>
<a class="service-card service-card--media slide-enter slide-enter--left stagger-3" href="two-story-pool-cage-rescreen.html">
<div class="service-card-media" style="background-image: url('Images/gallery/PXL_20240909_160616822.PANO.jpg')" role="img" aria-label="Two-story pool cage rescreen"></div>
<div class="service-card-body">
<div class="service-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2v20"/><path d="M5 8h14"/><path d="M7 14h10"/><rect x="3" y="4" width="18" height="16" rx="2"/>
</svg>
</div>
<h3>Two-Story Pool Cages</h3>
<p>Tall enclosure rescreens and repairs — multi-level pool cages that need ladder work and careful panel sequencing.</p>
</div>
</a>
</div>
</div>
</section>
<!-- ====== OUR WORK TEASER ====== -->
<section class="work-teaser work-teaser--parallax section-shell" data-parallax-overscan="0.30">
<div class="work-teaser__bg st-parallax-bg" aria-hidden="true">
<img src="Images/gallery/PXL_20240909_160616822.PANO.jpg" alt="" width="1200" height="450" loading="lazy" decoding="async" role="presentation">
</div>
<div class="work-teaser__overlay" aria-hidden="true"></div>
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">Proof of work</p>
<h2 class="reveal-left stagger-1">Real Jobs, Real Results</h2>
<p class="reveal stagger-2">Every photo is from an actual completed project - screen lanais, pool enclosures, and rescreens across Tampa Bay.</p>
</div>
<div class="work-teaser-grid">
<a class="work-thumb slide-enter slide-enter--left stagger-1" href="gallery.html?filter=lanai">
<img src="Images/gallery/20221018_121328.jpg" alt="Completed screen lanai with dark aluminum frame - Tampa Bay" loading="lazy" width="600" height="450">
<span class="work-thumb-label">Screen Lanais</span>
</a>
<a class="work-thumb slide-enter slide-enter--right stagger-2" href="gallery.html?filter=enclosure&view=pool">
<img src="Images/gallery/20220816_113149.jpg" alt="Residential pool area screen enclosure project - Tampa Bay" loading="lazy" width="600" height="450">
<span class="work-thumb-label">Pool Enclosures</span>
</a>
<a class="work-thumb slide-enter slide-enter--top stagger-3" href="gallery.html?filter=rescreen">
<img src="Images/gallery/20220406_152213.jpg" alt="Rescreen and screen lanai enclosure finished - Tampa Bay" loading="lazy" width="600" height="450">
<span class="work-thumb-label">Rescreens</span>
</a>
<a class="work-thumb slide-enter slide-enter--bottom stagger-4" href="gallery.html?filter=enclosure&view=full">
<img src="Images/gallery/PXL_20240909_160616822.PANO.jpg" alt="Panoramic view of completed screen enclosure across rear of home - Tampa Bay 2024" loading="lazy" width="1200" height="450">
<span class="work-thumb-label">Full Enclosures</span>
</a>
</div>
<div class="work-teaser-cta reveal">
<a class="btn btn-ghost" href="gallery.html">See All Projects →</a>
</div>
</div>
</section>
<!-- ====== REVIEWS + SERVICE AREA MAP ====== -->
<section class="map-section section-shell" aria-label="Customer reviews and service area map">
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">Where we work</p>
<h2 class="reveal-left stagger-1">Tampa Bay Service Area</h2>
<p class="reveal stagger-2">Based in New Port Richey — serving Pinellas, Pasco, and Hillsborough County within roughly 50 miles. St. Pete, Clearwater, Tampa, Largo, Palm Harbor, and nearby communities.</p>
</div>
<div class="st-map-review-shell reveal stagger-2" aria-label="Google reviews and map">
<div class="st-google-reviews-showcase">
<div class="st-google-reviews-header">
<svg class="st-google-g-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-hidden="true" focusable="false">
<path fill="#EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/>
<path fill="#4285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/>
<path fill="#FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/>
<path fill="#34A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/>
</svg>
<span>Google Reviews</span>
<div class="st-google-stars-display" id="st-review-stars" role="img" aria-label="5 star rating">★★★★★</div>
<div class="st-google-reviews-summary" id="st-review-summary">5.0 · 3 reviews</div>
</div>
<div class="st-review-carousel-wrapper" data-st-review-carousel>
<button class="st-review-carousel-btn prev" type="button" aria-label="Previous review" disabled>‹</button>
<div class="st-review-carousel-track-outer">
<div class="st-review-carousel-track" aria-live="polite"></div>
</div>
<button class="st-review-carousel-btn next" type="button" aria-label="Next review" disabled>›</button>
</div>
<div class="st-review-carousel-dots" role="group" aria-label="Google review pages"></div>
<p class="st-google-review-links">
<a href="https://g.page/r/CaokraP8eY9fEAI/review" target="_blank" rel="noopener noreferrer">See our Google profile or leave a review</a>
</p>
<script id="google-reviews-seed" type="application/json">
{
"ratingValue": 5,
"reviewCount": 3,
"reviews": [
{
"name": "M Cully",
"meta": "Google review",
"date": "This week",
"text": "Chris was great.Will use him again.",
"stars": 5,
"avatarColor": "#1e6b2e"
},
{
"name": "Becky Garwood",
"meta": "Google review",
"date": "2 weeks ago",
"text": "What incredible professionalism and craftsmanship! I am so glad I found Chris and the Screen Team. They are very experienced and make the whole process easy and fast. Thank you! Highly recommended.",
"stars": 5,
"avatarColor": "#c0392b"
},
{
"name": "Patti Silliman",
"meta": "Google review",
"date": "2 months ago",
"text": "Helped me out so much screening in my patio…. Good bye love bugs!",
"stars": 5,
"avatarColor": "#1a56c4"
}
]
}
</script>
</div>
<div class="st-map-panel" aria-label="Screen Team LLC Google map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3523.823456789!2d-83.0216618!3d27.9768814!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xaeb0400d14eb0ad1%3A0x5f8f79fca3ad24aa!2sScreen%20Team%20LLC!5e0!3m2!1sen!2sus!4v1780851537400!5m2!1sen!2sus"
title="Screen Team LLC on Google Maps"
loading="lazy"
allowfullscreen=""
referrerpolicy="no-referrer-when-downgrade"
></iframe>
<div class="st-map-overlay">
<strong>Screen Team LLC</strong>
<span class="st-map-rating" id="st-map-rating" aria-label="5 out of 5 stars, 3 Google reviews">★★★★★ 5.0 · 3 Google reviews</span>
<span>Tampa Bay, FL • Pinellas & Hillsborough County</span>
</div>
</div>
</div>
</div>
</section>
<!-- ====== ABOUT ====== -->
<section id="about" class="about-section section-shell">
<div class="container about-grid">
<div class="about-copy">
<p class="eyebrow reveal-left">Why choose us</p>
<h2 class="reveal-left stagger-1">Straight talk.<br>Quality work.<br>No runaround.</h2>
<p class="reveal stagger-2">Chris Westcott runs The Screen Team LLC as a direct-contact operation. When you call, you're talking to the person doing the work - not a call center, not a subcontractor chain.</p>
<p class="reveal stagger-3">The focus is screen repair and enclosure work throughout the Tampa Bay area, built on clean, reliable workmanship one job at a time.</p>
</div>
<div class="about-card reveal-right stagger-2">
<h3>What to expect</h3>
<ul class="about-list">
<li>Direct line to Chris - no phone trees</li>
<li>Straight quotes, no inflated estimates</li>
<li>Clean workmanship on every job</li>
<li>Tampa Bay local - knows the climate and the work</li>
<li>Residential screen and enclosure specialist</li>
</ul>
<a class="btn btn-primary" href="tel:7273866562">Call (727) 386-6562</a>
</div>
</div>
</section>
<!-- ====== PROCESS BAND ====== -->
<section class="st-process-band section-shell" aria-labelledby="process-heading" data-parallax-overscan="0.08">
<div class="st-process-band__bg st-parallax-bg" aria-hidden="true">
<img src="Images/preview/services/pool-enclosures.jpg" alt="" width="1200" height="630" loading="lazy" decoding="async" role="presentation">
</div>
<div class="st-process-band__overlay" aria-hidden="true"></div>
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">How it works</p>
<h2 class="reveal-left stagger-1" id="process-heading">Three steps from call to finished screen work.</h2>
<p class="reveal stagger-2">No call centers, no subcontractor chains — Chris handles estimates and installation directly across Tampa Bay.</p>
</div>
<div class="st-process-grid">
<article class="st-process-card reveal-left stagger-1">
<span class="st-process-number">1</span>
<h3>Call or send a quote request</h3>
<p>Reach Chris at (727) 386-6562 or use the form on this page. Describe the enclosure type, what's damaged, and your city — that's enough to get started.</p>
</article>
<article class="st-process-card reveal stagger-2">
<span class="st-process-number">2</span>
<h3>Get a straight quote</h3>
<p>Many standard rescreens can be quoted over the phone. Larger pool cages or structural issues may need an on-site look. You'll know the scope and price before work begins.</p>
</article>
<article class="st-process-card reveal-right stagger-3">
<span class="st-process-number">3</span>
<h3>Job done right</h3>
<p>Chris handles the work from start to finish — clean materials, proper spline work, nothing left half-done. Payment is collected after you've seen the completed job.</p>
</article>
</div>
</div>
</section>
<!-- ====== TRUST PILLARS ====== -->
<section class="st-trust-quotes" aria-labelledby="trust-quotes-heading">
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">How we work</p>
<h2 class="reveal-left stagger-1" id="trust-quotes-heading">Three commitments on every Screen Team job.</h2>
<p class="reveal stagger-2">These are how we operate — not anonymous review excerpts. Screen Team LLC is Chris Westcott on every estimate and install. Follow along on <a href="https://nextdoor.com/page/screen-team-llc-safety-harbor-fl" target="_blank" rel="noopener noreferrer">Nextdoor</a>, <a href="https://www.facebook.com/profile.php?id=61588867359684" target="_blank" rel="noopener noreferrer">Facebook</a>, and <a href="https://x.com/ScreenTeamLLC" target="_blank" rel="noopener noreferrer">X</a>.</p>
</div>
<div class="st-quote-grid">
<article class="st-quote-card reveal stagger-1">
<p class="st-pillar-tag">Who you talk to</p>
<p class="st-quote-text"><strong>Owner on every job.</strong> When you call (727) 386-6562, you reach Chris Westcott — the person who quotes your enclosure work and handles the installation.</p>
<p class="st-quote-meta"><a href="about.html">About Chris Westcott</a></p>
</article>
<article class="st-quote-card reveal stagger-2">
<p class="st-pillar-tag">How we quote</p>
<p class="st-quote-text"><strong>Honest scope, no upsell.</strong> Partial panel repairs when that's the right call. Full rescreens when the mesh is shot. Chris tells you what the job actually needs.</p>
<p class="st-quote-meta"><a href="service-guarantee.html">Service Guarantee</a></p>
</article>
<article class="st-quote-card reveal stagger-3">
<p class="st-pillar-tag">Before we start</p>
<p class="st-quote-text"><strong>Free estimates before work starts.</strong> Clear pricing on pool cages, lanais, window screens, and garage screens across Pinellas and Hillsborough County.</p>
<p class="st-quote-meta"><a href="pricing.html">Pricing guide</a> · <a href="gallery.html">See our work</a></p>
</article>
</div>
</div>
</section>
<!-- ====== ROUTE BAND ====== -->
<section class="st-route-band st-route-band--parallax" aria-label="Next steps" data-parallax-overscan="0.28">
<div class="st-route-band__bg st-parallax-bg" aria-hidden="true">
<img src="Images/gallery/20220816_113149.jpg" alt="" width="600" height="450" loading="lazy" decoding="async" role="presentation">
</div>
<div class="st-route-band__overlay" aria-hidden="true"></div>
<div class="container">
<h2 class="visually-hidden">Next steps with Screen Team LLC</h2>
<div class="st-route-grid">
<article class="st-route-card reveal-left stagger-1">
<h3>Get a free quote</h3>
<p>Call Chris directly or fill out the contact form. Pool cages, lanais, window screens, garage screens, and gutter work across Tampa Bay.</p>
<a class="btn btn-primary" href="contact.html">Request a Quote</a>
</article>
<article class="st-route-card reveal stagger-2">
<h3>See completed projects</h3>
<p>Real photos from pool enclosures, lanais, and rescreens across Pinellas and Hillsborough County — proof before you book.</p>
<a class="btn btn-ghost" href="gallery.html">View Our Work</a>
</article>
<article class="st-route-card reveal-right stagger-3">
<h3>Check your service area</h3>
<p>St. Pete, Clearwater, Largo, Palm Harbor, Safety Harbor, Dunedin, Tampa, and surrounding communities. Not sure? Just call.</p>
<a class="btn btn-ghost" href="service-areas.html">Service Areas</a>
</article>
</div>
</div>
</section>
<!-- ====== FAQ ====== -->
<section id="faq" class="faq-section section-shell">
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">Common questions</p>
<h2 class="reveal-left stagger-1">Frequently Asked Questions</h2>
<p class="reveal stagger-2">Straight answers about screen repair and enclosure work in Tampa Bay.</p>
</div>
<div class="faq-list">
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a1">
Do you offer free estimates?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a1" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>Yes - call or text Chris directly at (727) 386-6562, or fill out the form on this page. Chris will assess the job and give you a clear quote before any work begins. No pressure, no hidden fees.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a2">
What areas do you serve?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a2" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>The Screen Team serves the greater Tampa Bay area including St. Petersburg, Clearwater, Largo, Dunedin, Safety Harbor, Oldsmar, Palm Harbor, Tarpon Springs, Seminole, and surrounding Pinellas and Hillsborough County communities. Not sure if we reach you? Just ask - call (727) 386-6562.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a3">
How long does a typical rescreen job take?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a3" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>Most standard rescreen jobs - a pool cage, lanai, or porch - are completed in a single day. Larger or more complex enclosures may take a day or two. Chris will give you a realistic timeframe when he assesses your job.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a4">
What type of screen material do you use?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a4" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>We use fiberglass and aluminum screening depending on the application. Fiberglass is standard for most residential enclosures and is resistant to Florida's heat and humidity. Aluminum is a stronger option where pet resistance or added durability is needed. Chris will recommend the right material for your situation.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a5">
Do you warranty your work?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a5" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>Yes. We stand behind our workmanship. If something isn't right after the job is done, call Chris and it will be made right. See our <a href="service-guarantee.html">Service Guarantee</a> page for full details.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a6">
Can you repair just one or two damaged screen panels?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a6" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>Absolutely. You don't need to replace the entire enclosure for a few torn or damaged panels. We assess what actually needs to be done and repair only what's needed - no upselling a full rescreen if a partial repair is the right call.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a7">
How do I know if I need a rescreen or a full structural repair?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a7" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>Rescreening handles damaged or worn screen material. Structural issues - bent or broken aluminum framing, damaged posts, or enclosure sections that have collapsed - are separate. Chris will inspect and tell you exactly what the job calls for during your estimate.</p></div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false" aria-controls="faq-a8">
What payment methods do you accept?
<svg class="faq-chevron" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
</button>
<div class="faq-answer" id="faq-a8" aria-hidden="true" inert>
<div class="faq-answer-inner"><p>We accept cash, check, and major credit/debit cards. Payment is collected upon completion of the work. Chris will confirm payment options when booking your job.</p></div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== CRAWL HUB ====== -->
<section class="st-crawl-hub" aria-labelledby="crawl-hub-heading">
<div class="container">
<div class="section-heading">
<p class="eyebrow reveal-left">Explore the site</p>
<h2 class="reveal-left stagger-1" id="crawl-hub-heading">Screen repair resources across Tampa Bay.</h2>
<p class="reveal stagger-2">Service pages, local coverage, pricing guidance, and project photos for pool enclosures, lanais, and residential screen work.</p>
</div>
<nav class="st-crawl-hub__chips" aria-label="Site sections">
<a class="st-crawl-chip" href="rescreens.html">Rescreens</a>
<a class="st-crawl-chip" href="pool-enclosures.html">Pool Enclosures</a>
<a class="st-crawl-chip" href="screen-lanais.html">Screen Lanais</a>
<a class="st-crawl-chip" href="window-screens.html">Window Screens</a>
<a class="st-crawl-chip" href="garage-screens.html">Garage Screens</a>
<a class="st-crawl-chip" href="gutter-work.html">Gutter Work</a>
<a class="st-crawl-chip" href="new-port-richey-screen-repair.html">New Port Richey</a>
<a class="st-crawl-chip" href="clearwater-screen-repair.html">Clearwater</a>
<a class="st-crawl-chip" href="st-petersburg-screen-repair.html">St. Pete</a>
<a class="st-crawl-chip" href="tampa-screen-repair.html">Tampa</a>
<a class="st-crawl-chip" href="largo-screen-repair.html">Largo</a>
<a class="st-crawl-chip" href="palm-harbor-screen-repair.html">Palm Harbor</a>
<a class="st-crawl-chip" href="dunedin-screen-repair.html">Dunedin</a>
<a class="st-crawl-chip" href="safety-harbor-screen-repair.html">Safety Harbor</a>
<a class="st-crawl-chip" href="tarpon-springs-screen-repair.html">Tarpon Springs</a>
<a class="st-crawl-chip" href="seminole-screen-repair.html">Seminole</a>
<a class="st-crawl-chip" href="oldsmar-screen-repair.html">Oldsmar</a>
<a class="st-crawl-chip" href="pricing.html">Pricing Guide</a>
<a class="st-crawl-chip" href="service-areas.html">All Service Areas</a>
<a class="st-crawl-chip" href="service-guarantee.html">Service Guarantee</a>
<a class="st-crawl-chip" href="about.html">About Chris Westcott</a>
<a class="st-crawl-chip" href="gallery.html">Project Gallery</a>
<a class="st-crawl-chip" href="contact.html">Contact</a>
<a class="st-crawl-chip" href="llms.txt">llms.txt</a>
</nav>
</div>
</section>
<!-- ====== CONTACT ====== -->
<section id="contact" class="contact-section contact-section--parallax section-shell" data-parallax-overscan="0.30">
<div class="container contact-inner reveal-scale">