-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1195 lines (1096 loc) · 72.4 KB
/
Copy pathindex.html
File metadata and controls
1195 lines (1096 loc) · 72.4 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Transform your Newberg home with professional Christmas light installation. Custom designs, expert installation, full-season service. Licensed, insured, stress-free. Book your free consultation today.">
<meta name="keywords" content="Christmas light installation Newberg, Professional holiday lighting Oregon, Christmas lights Yamhill County, Holiday light installation service, Newberg Christmas decorating">
<meta name="author" content="PNWLights.com">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Professional Christmas Light Installation Newberg OR | PNWLights">
<meta property="og:description" content="Transform your Newberg home with professional Christmas light installation. Custom designs, expert installation, stress-free.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://pnwlights.com">
<title>Professional Christmas Light Installation Newberg OR | PNWLights</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- Jobber Form Styles -->
<link rel="stylesheet" href="https://d3ey4dbjkt2f6s.cloudfront.net/assets/external/work_request_embed.css" media="screen" />
<!-- Main Stylesheet -->
<link rel="stylesheet" href="styles.css">
<!-- Local Business Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "PNWLights",
"image": "https://pnwlights.com/images/logo.jpg",
"@id": "https://pnwlights.com",
"url": "https://pnwlights.com",
"telephone": "+1-971-241-9110",
"priceRange": "$$-$$$",
"address": {
"@type": "PostalAddress",
"streetAddress": "1404 Park Lane",
"addressLocality": "Newberg",
"addressRegion": "OR",
"postalCode": "97132",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 45.3001,
"longitude": -122.9734
},
"areaServed": {
"@type": "GeoCircle",
"geoMidpoint": {
"@type": "GeoCoordinates",
"latitude": 45.300118,
"longitude": -122.973157
},
"geoRadius": "32187"
},
"sameAs": [
""
]
}
</script>
</head>
<body>
<!-- Christmas Snowflakes -->
<div class="snowflakes" aria-hidden="true">
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
<div class="snowflake">❅</div>
<div class="snowflake">❆</div>
</div>
<!-- Sticky Header -->
<header class="sticky-header">
<div class="header-container">
<div class="logo">
<span class="logo-text">PNWLights</span>
</div>
<div class="header-actions">
<a href="tel:+19712419110" class="phone-link">
<svg class="phone-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>
</svg>
<span class="phone-number">(971) 241-9110</span>
</a>
<button class="cta-button header-cta" onclick="scrollToForm()">Get Free Quote</button>
</div>
</div>
</header>
<!-- Hero Section - Whimsical Christmas Village Style -->
<section class="hero" id="hero">
<div class="hero-background">
<!-- Starry sky -->
<div class="stars"></div>
<!-- Glowing moon - bigger -->
<div class="moon moon-large"></div>
<!-- Santa's Sleigh with Reindeer -->
<div class="santa-sleigh-container">
<svg class="santa-sleigh" viewBox="0 0 400 120" preserveAspectRatio="xMidYMid meet">
<!-- Magic trail/stardust behind sleigh -->
<g class="magic-trail">
<circle cx="10" cy="70" r="1.5" fill="#fffde8" opacity="0.3"/>
<circle cx="25" cy="65" r="2" fill="#fffde8" opacity="0.4"/>
<circle cx="40" cy="68" r="1" fill="#fffde8" opacity="0.5"/>
<circle cx="55" cy="62" r="2.5" fill="#fffde8" opacity="0.4"/>
<circle cx="70" cy="66" r="1.5" fill="#fffde8" opacity="0.6"/>
<circle cx="85" cy="60" r="2" fill="#fffde8" opacity="0.5"/>
<circle cx="100" cy="63" r="1" fill="#fffde8" opacity="0.7"/>
<circle cx="115" cy="58" r="2.5" fill="#fffde8" opacity="0.6"/>
<circle cx="130" cy="61" r="1.5" fill="#fffde8" opacity="0.8"/>
</g>
<!-- Reindeer 1 (front) -->
<g class="reindeer" transform="translate(320, 45)">
<!-- Body -->
<ellipse cx="0" cy="12" rx="12" ry="8" fill="#1a2a3a"/>
<!-- Head -->
<circle cx="15" cy="5" r="6" fill="#1a2a3a"/>
<!-- Antlers -->
<path d="M18 -2 Q22 -10 18 -15 M20 -8 Q25 -10 27 -8" stroke="#1a2a3a" stroke-width="2" fill="none"/>
<path d="M14 -2 Q10 -10 14 -15 M12 -8 Q7 -10 5 -8" stroke="#1a2a3a" stroke-width="2" fill="none"/>
<!-- Legs -->
<line x1="-8" y1="18" x2="-12" y2="32" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-2" y1="18" x2="2" y2="32" stroke="#1a2a3a" stroke-width="2"/>
<line x1="5" y1="18" x2="8" y2="30" stroke="#1a2a3a" stroke-width="2"/>
<line x1="10" y1="16" x2="15" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<!-- Harness line -->
<line x1="-12" y1="12" x2="-30" y2="15" stroke="#1a2a3a" stroke-width="1.5"/>
</g>
<!-- Reindeer 2 -->
<g class="reindeer" transform="translate(280, 50)">
<ellipse cx="0" cy="12" rx="11" ry="7" fill="#1a2a3a"/>
<circle cx="14" cy="6" r="5" fill="#1a2a3a"/>
<path d="M17 0 Q20 -7 17 -11 M18 -5 Q22 -7 24 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<path d="M12 0 Q9 -7 12 -11 M11 -5 Q7 -7 5 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<line x1="-7" y1="17" x2="-10" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-1" y1="17" x2="2" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="5" y1="16" x2="8" y2="26" stroke="#1a2a3a" stroke-width="2"/>
<line x1="10" y1="14" x2="14" y2="24" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-11" y1="12" x2="-28" y2="18" stroke="#1a2a3a" stroke-width="1.5"/>
</g>
<!-- Reindeer 3 -->
<g class="reindeer" transform="translate(240, 55)">
<ellipse cx="0" cy="12" rx="11" ry="7" fill="#1a2a3a"/>
<circle cx="14" cy="6" r="5" fill="#1a2a3a"/>
<path d="M17 0 Q20 -7 17 -11 M18 -5 Q22 -7 24 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<path d="M12 0 Q9 -7 12 -11 M11 -5 Q7 -7 5 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<line x1="-7" y1="17" x2="-10" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-1" y1="17" x2="2" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="5" y1="16" x2="8" y2="26" stroke="#1a2a3a" stroke-width="2"/>
<line x1="10" y1="14" x2="14" y2="24" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-11" y1="12" x2="-28" y2="20" stroke="#1a2a3a" stroke-width="1.5"/>
</g>
<!-- Reindeer 4 (back, near sleigh) -->
<g class="reindeer" transform="translate(200, 58)">
<ellipse cx="0" cy="12" rx="11" ry="7" fill="#1a2a3a"/>
<circle cx="14" cy="6" r="5" fill="#1a2a3a"/>
<path d="M17 0 Q20 -7 17 -11 M18 -5 Q22 -7 24 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<path d="M12 0 Q9 -7 12 -11 M11 -5 Q7 -7 5 -5" stroke="#1a2a3a" stroke-width="1.8" fill="none"/>
<line x1="-7" y1="17" x2="-10" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="-1" y1="17" x2="2" y2="28" stroke="#1a2a3a" stroke-width="2"/>
<line x1="5" y1="16" x2="8" y2="26" stroke="#1a2a3a" stroke-width="2"/>
<line x1="10" y1="14" x2="14" y2="24" stroke="#1a2a3a" stroke-width="2"/>
<!-- Harness to sleigh -->
<line x1="-11" y1="14" x2="-40" y2="25" stroke="#1a2a3a" stroke-width="1.5"/>
</g>
<!-- Santa's Sleigh -->
<g class="sleigh" transform="translate(140, 60)">
<!-- Sleigh body -->
<path d="M0 20 Q-5 10 5 5 L45 5 Q55 5 55 15 L55 25 Q55 35 45 38 L10 38 Q-10 38 -10 25 Z" fill="#1a2a3a"/>
<!-- Sleigh runner -->
<path d="M-10 38 Q-15 42 -5 45 L50 45 Q65 45 60 38" stroke="#1a2a3a" stroke-width="3" fill="none"/>
<!-- Sleigh back curve -->
<path d="M0 5 Q-8 0 -5 -10 Q0 -15 10 -12" fill="#1a2a3a"/>
<!-- Santa silhouette -->
<g transform="translate(15, -5)">
<!-- Body -->
<ellipse cx="12" cy="15" rx="14" ry="12" fill="#1a2a3a"/>
<!-- Head -->
<circle cx="12" cy="-2" r="9" fill="#1a2a3a"/>
<!-- Hat -->
<path d="M3 -5 Q2 -15 12 -18 Q22 -15 21 -5" fill="#1a2a3a"/>
<circle cx="12" cy="-20" r="3" fill="#1a2a3a"/>
<!-- Arm holding reins -->
<path d="M26 8 Q35 0 45 5" stroke="#1a2a3a" stroke-width="4" fill="none"/>
</g>
<!-- Gift bag silhouette -->
<ellipse cx="42" cy="12" rx="8" ry="12" fill="#1a2a3a"/>
</g>
</svg>
</div>
<!-- Floating particles -->
<div class="magic-particles">
<span></span><span></span><span></span><span></span><span></span>
<span></span><span></span><span></span><span></span><span></span>
</div>
</div>
<!-- Village Silhouette -->
<div class="village-scene">
<svg class="village-svg" viewBox="0 0 1400 400" preserveAspectRatio="xMidYMax slice">
<!-- Snow ground -->
<ellipse cx="700" cy="420" rx="850" ry="100" fill="url(#snowGround)"/>
<!-- House 1 - Plain dark cottage (jealous) -->
<g class="house house-plain" transform="translate(80, 210)">
<rect x="0" y="50" width="90" height="75" fill="#1a1008"/>
<polygon points="-5,50 45,-12 95,50" fill="#2a1510"/>
<rect x="65" y="5" width="12" height="30" fill="#201008"/>
<rect class="window dim-window" x="12" y="68" width="25" height="32" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="53" y="68" width="25" height="32" fill="#3a2810" rx="2"/>
<rect x="33" y="95" width="24" height="30" fill="#0a0505" rx="2"/>
</g>
<!-- House 2 - Plain tall house (jealous) -->
<g class="house house-plain" transform="translate(200, 165)">
<rect x="0" y="55" width="85" height="105" fill="#1d1210"/>
<polygon points="-5,55 42,-15 90,55" fill="#2d1815"/>
<rect x="58" y="5" width="12" height="35" fill="#1a0d08"/>
<rect class="window dim-window" x="12" y="75" width="24" height="30" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="49" y="75" width="24" height="30" fill="#3a2810" rx="2"/>
<rect x="30" y="130" width="25" height="30" fill="#0a0505" rx="2"/>
</g>
<!-- House 3 - Plain church-style (jealous) -->
<g class="house house-plain" transform="translate(320, 140)">
<rect x="10" y="70" width="100" height="110" fill="#1f1510"/>
<polygon points="5,70 60,-20 115,70" fill="#2f1a15"/>
<polygon points="50,-20 60,-55 70,-20" fill="#3a2520"/>
<rect class="window dim-window" x="25" y="90" width="28" height="40" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="67" y="90" width="28" height="40" fill="#3a2810" rx="2"/>
<rect x="43" y="150" width="34" height="30" fill="#0a0505" rx="3"/>
</g>
<!-- House 4 - THE SPECTACULAR HOUSE WITH ALL THE LIGHTS -->
<g class="house house-featured" transform="translate(480, 160)">
<!-- House body with slight glow -->
<rect x="0" y="55" width="130" height="110" fill="#3d2818"/>
<!-- Roof -->
<polygon points="-8,55 65,-30 138,55" fill="#5d3828"/>
<!-- Chimney -->
<rect x="95" y="0" width="16" height="40" fill="#4a2818"/>
<!-- Smoke from chimney -->
<g class="chimney-smoke">
<circle cx="103" cy="-10" r="4" fill="rgba(200,200,200,0.3)"/>
<circle cx="106" cy="-20" r="5" fill="rgba(200,200,200,0.2)"/>
<circle cx="100" cy="-32" r="6" fill="rgba(200,200,200,0.1)"/>
</g>
<!-- Windows - bright and warm (only 2) -->
<rect class="window bright-window" x="18" y="80" width="38" height="45" fill="#ffcc44" rx="3"/>
<rect class="window bright-window" x="74" y="80" width="38" height="45" fill="#ffdd66" rx="3"/>
<!-- Window frames -->
<line x1="37" y1="80" x2="37" y2="125" stroke="#4a2818" stroke-width="2"/>
<line x1="18" y1="102" x2="56" y2="102" stroke="#4a2818" stroke-width="2"/>
<line x1="93" y1="80" x2="93" y2="125" stroke="#4a2818" stroke-width="2"/>
<line x1="74" y1="102" x2="112" y2="102" stroke="#4a2818" stroke-width="2"/>
<!-- Door -->
<rect x="50" y="130" width="30" height="35" fill="#2a1508" rx="3"/>
<!-- Wreath on door -->
<circle cx="65" cy="142" r="9" fill="none" stroke="#2d6a2d" stroke-width="4"/>
<circle cx="65" cy="135" r="3" fill="#ff2222"/>
<!-- === SPECTACULAR CHRISTMAS LIGHTS === -->
<!-- Roof peak lights - left slope (follows roof from -8,55 to 65,-30) -->
<!-- Slope: rise=-85, run=73, so for each 12px horizontal, drop ~14px -->
<g class="christmas-lights roof-lights">
<circle cx="-2" cy="50" r="4" class="light-red"/>
<circle cx="10" cy="36" r="4" class="light-green"/>
<circle cx="22" cy="22" r="4" class="light-yellow"/>
<circle cx="34" cy="8" r="4" class="light-blue"/>
<circle cx="46" cy="-6" r="4" class="light-purple"/>
<circle cx="58" cy="-20" r="4" class="light-red"/>
<circle cx="65" cy="-28" r="5" class="light-star"/>
</g>
<!-- Roof peak lights - right slope (follows roof from 65,-30 to 138,55) -->
<!-- Slope: rise=85, run=73, so for each 12px horizontal, rise ~14px -->
<g class="christmas-lights roof-lights">
<circle cx="72" cy="-20" r="4" class="light-green"/>
<circle cx="84" cy="-6" r="4" class="light-yellow"/>
<circle cx="96" cy="8" r="4" class="light-blue"/>
<circle cx="108" cy="22" r="4" class="light-purple"/>
<circle cx="120" cy="36" r="4" class="light-red"/>
<circle cx="132" cy="50" r="4" class="light-green"/>
</g>
<!-- Roofline bottom edge lights -->
<g class="christmas-lights eave-lights">
<circle cx="-5" cy="55" r="3" class="light-red"/>
<circle cx="8" cy="55" r="3" class="light-green"/>
<circle cx="21" cy="55" r="3" class="light-yellow"/>
<circle cx="34" cy="55" r="3" class="light-blue"/>
<circle cx="47" cy="55" r="3" class="light-purple"/>
<circle cx="60" cy="55" r="3" class="light-red"/>
<circle cx="73" cy="55" r="3" class="light-green"/>
<circle cx="86" cy="55" r="3" class="light-yellow"/>
<circle cx="99" cy="55" r="3" class="light-blue"/>
<circle cx="112" cy="55" r="3" class="light-purple"/>
<circle cx="125" cy="55" r="3" class="light-red"/>
<circle cx="135" cy="55" r="3" class="light-green"/>
</g>
<!-- Window frame lights -->
<g class="christmas-lights window-lights">
<!-- Left window frame -->
<circle cx="15" cy="77" r="2.5" class="light-red"/>
<circle cx="15" cy="90" r="2.5" class="light-green"/>
<circle cx="15" cy="103" r="2.5" class="light-yellow"/>
<circle cx="15" cy="116" r="2.5" class="light-blue"/>
<circle cx="27" cy="128" r="2.5" class="light-purple"/>
<circle cx="42" cy="128" r="2.5" class="light-red"/>
<circle cx="59" cy="116" r="2.5" class="light-green"/>
<circle cx="59" cy="103" r="2.5" class="light-yellow"/>
<circle cx="59" cy="90" r="2.5" class="light-blue"/>
<circle cx="59" cy="77" r="2.5" class="light-purple"/>
<!-- Right window frame -->
<circle cx="71" cy="77" r="2.5" class="light-red"/>
<circle cx="71" cy="90" r="2.5" class="light-green"/>
<circle cx="71" cy="103" r="2.5" class="light-yellow"/>
<circle cx="71" cy="116" r="2.5" class="light-blue"/>
<circle cx="83" cy="128" r="2.5" class="light-purple"/>
<circle cx="98" cy="128" r="2.5" class="light-red"/>
<circle cx="115" cy="116" r="2.5" class="light-green"/>
<circle cx="115" cy="103" r="2.5" class="light-yellow"/>
<circle cx="115" cy="90" r="2.5" class="light-blue"/>
<circle cx="115" cy="77" r="2.5" class="light-purple"/>
</g>
<!-- Door frame lights -->
<g class="christmas-lights door-lights">
<circle cx="47" cy="128" r="2.5" class="light-red"/>
<circle cx="47" cy="140" r="2.5" class="light-green"/>
<circle cx="47" cy="152" r="2.5" class="light-yellow"/>
<circle cx="47" cy="164" r="2.5" class="light-blue"/>
<circle cx="83" cy="128" r="2.5" class="light-purple"/>
<circle cx="83" cy="140" r="2.5" class="light-red"/>
<circle cx="83" cy="152" r="2.5" class="light-green"/>
<circle cx="83" cy="164" r="2.5" class="light-yellow"/>
</g>
</g>
<!-- Yard lights for featured house - ground outline -->
<g class="christmas-lights yard-lights" transform="translate(480, 160)">
<!-- Front yard path lights -->
<circle cx="-25" cy="175" r="3.5" class="light-red"/>
<circle cx="-10" cy="180" r="3.5" class="light-green"/>
<circle cx="8" cy="183" r="3.5" class="light-yellow"/>
<circle cx="28" cy="185" r="3.5" class="light-blue"/>
<circle cx="48" cy="186" r="3.5" class="light-purple"/>
<circle cx="68" cy="186" r="3.5" class="light-red"/>
<circle cx="88" cy="185" r="3.5" class="light-green"/>
<circle cx="108" cy="183" r="3.5" class="light-yellow"/>
<circle cx="128" cy="180" r="3.5" class="light-blue"/>
<circle cx="145" cy="175" r="3.5" class="light-purple"/>
<circle cx="160" cy="170" r="3.5" class="light-red"/>
</g>
<!-- House 5 - Plain cottage (jealous) -->
<g class="house house-plain" transform="translate(680, 200)">
<rect x="0" y="45" width="85" height="75" fill="#1a1008"/>
<polygon points="-5,45 42,-8 90,45" fill="#2a1510"/>
<rect x="60" y="2" width="11" height="28" fill="#201008"/>
<rect class="window dim-window" x="10" y="60" width="25" height="32" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="50" y="60" width="25" height="32" fill="#3a2810" rx="2"/>
<rect x="30" y="92" width="24" height="28" fill="#0a0505" rx="2"/>
</g>
<!-- House 6 - Plain tall narrow (jealous) -->
<g class="house house-plain" transform="translate(800, 170)">
<rect x="0" y="55" width="75" height="100" fill="#1d1210"/>
<polygon points="-5,55 37,-12 80,55" fill="#2d1815"/>
<rect x="52" y="8" width="11" height="32" fill="#1a0d08"/>
<rect class="window dim-window" x="10" y="75" width="22" height="28" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="43" y="75" width="22" height="28" fill="#3a2810" rx="2"/>
<rect x="25" y="130" width="24" height="28" fill="#0a0505" rx="2"/>
</g>
<!-- House 7 - Plain wide house (jealous) -->
<g class="house house-plain" transform="translate(910, 185)">
<rect x="0" y="50" width="110" height="85" fill="#1a1008"/>
<polygon points="-5,50 55,-18 115,50" fill="#2a1510"/>
<rect x="80" y="2" width="14" height="35" fill="#201008"/>
<rect class="window dim-window" x="15" y="70" width="28" height="35" fill="#3a2810" rx="2"/>
<rect class="window dim-window" x="67" y="70" width="28" height="35" fill="#3a2810" rx="2"/>
<rect x="42" y="105" width="26" height="30" fill="#0a0505" rx="2"/>
</g>
<!-- Pine trees with trunks -->
<g class="tree" transform="translate(30, 250)">
<rect x="18" y="65" width="9" height="22" fill="#3a2515"/>
<polygon points="22,0 0,65 44,65" fill="#0f2a0f"/>
<polygon points="22,18 8,55 36,55" fill="#1a3a1a"/>
</g>
<g class="tree" transform="translate(150, 265)">
<rect x="14" y="50" width="7" height="18" fill="#3a2515"/>
<polygon points="17,0 0,50 34,50" fill="#0f2a0f"/>
<polygon points="17,14 6,42 28,42" fill="#1a3a1a"/>
</g>
<g class="tree" transform="translate(440, 270)">
<rect x="12" y="42" width="7" height="16" fill="#3a2515"/>
<polygon points="15,0 0,42 30,42" fill="#0f2a0f"/>
<polygon points="15,12 5,35 25,35" fill="#1a3a1a"/>
</g>
<!-- Lit tree near featured house -->
<g class="tree lit-tree" transform="translate(620, 255)">
<rect x="14" y="55" width="8" height="20" fill="#3a2515"/>
<polygon points="18,0 0,55 36,55" fill="#1a4a1a"/>
<polygon points="18,15 6,46 30,46" fill="#2d5a2d"/>
<!-- Tree lights -->
<circle cx="8" cy="45" r="2.5" class="light-red tree-light"/>
<circle cx="28" cy="42" r="2.5" class="light-green tree-light"/>
<circle cx="12" cy="32" r="2.5" class="light-yellow tree-light"/>
<circle cx="24" cy="28" r="2.5" class="light-blue tree-light"/>
<circle cx="18" cy="18" r="2.5" class="light-purple tree-light"/>
<circle cx="18" cy="5" r="4" class="light-star tree-light"/>
</g>
<g class="tree" transform="translate(770, 268)">
<rect x="12" y="42" width="7" height="16" fill="#3a2515"/>
<polygon points="15,0 0,42 30,42" fill="#0f2a0f"/>
<polygon points="15,12 5,35 25,35" fill="#1a3a1a"/>
</g>
<g class="tree" transform="translate(1050, 255)">
<rect x="16" y="58" width="8" height="20" fill="#3a2515"/>
<polygon points="20,0 0,58 40,58" fill="#0f2a0f"/>
<polygon points="20,16 7,48 33,48" fill="#1a3a1a"/>
</g>
<!-- Lamp posts -->
<g class="lamp-post" transform="translate(265, 230)">
<rect x="3" y="25" width="4" height="50" fill="#1a1a1a"/>
<circle class="lamp-glow" cx="5" cy="18" r="12" fill="url(#lampGlowDim)"/>
<rect x="0" y="12" width="10" height="12" fill="#2a2a2a" rx="2"/>
</g>
<!-- Bright lamp near featured house -->
<g class="lamp-post" transform="translate(455, 225)">
<rect x="3" y="25" width="4" height="52" fill="#1a1a1a"/>
<circle class="lamp-glow bright-lamp" cx="5" cy="18" r="18" fill="url(#lampGlow)"/>
<rect x="0" y="12" width="10" height="14" fill="#2a2a2a" rx="2"/>
</g>
<g class="lamp-post" transform="translate(870, 232)">
<rect x="3" y="25" width="4" height="48" fill="#1a1a1a"/>
<circle class="lamp-glow" cx="5" cy="18" r="12" fill="url(#lampGlowDim)"/>
<rect x="0" y="12" width="10" height="12" fill="#2a2a2a" rx="2"/>
</g>
<!-- Gradients and filters -->
<defs>
<!-- Bright lamp glow -->
<radialGradient id="lampGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffee99" stop-opacity="0.95"/>
<stop offset="40%" stop-color="#ffcc44" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#ff9900" stop-opacity="0"/>
</radialGradient>
<!-- Dim lamp glow for jealous area -->
<radialGradient id="lampGlowDim" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#aa9966" stop-opacity="0.4"/>
<stop offset="50%" stop-color="#886633" stop-opacity="0.2"/>
<stop offset="100%" stop-color="#664400" stop-opacity="0"/>
</radialGradient>
<linearGradient id="snowGround" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#e8f0f8"/>
<stop offset="100%" stop-color="#c0d8e8"/>
</linearGradient>
<!-- Spectacular light glow gradient -->
<radialGradient id="spectacularGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="1"/>
<stop offset="30%" stop-color="#ffffaa" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ffcc00" stop-opacity="0"/>
</radialGradient>
<!-- House glow for featured house -->
<filter id="houseGlow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="8" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
</svg>
</div>
<!-- Content overlay -->
<div class="hero-content">
<h1 class="hero-headline">
Bring the Magic of the<br>
<span class="headline-accent">Holidays Home</span>
</h1>
<p class="hero-supporting">
Professional Christmas light installation that transforms your home
into a winter wonderland. We handle everything — you simply enjoy the magic.
</p>
<div class="hero-cta-group">
<button class="cta-button cta-primary cta-glow" onclick="scrollToForm()">
<span>Get Your Free Design</span>
<svg class="cta-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</button>
<button class="cta-button cta-secondary" onclick="scrollToGallery()">
<svg class="cta-icon-left" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"/>
<circle cx="8.5" cy="8.5" r="1.5"/>
<polyline points="21 15 16 10 5 21"/>
</svg>
<span>View Our Work</span>
</button>
</div>
<!-- Trust indicators -->
<div class="hero-trust">
<div class="trust-item-hero">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
</svg>
<span>Fully Insured</span>
</div>
<div class="trust-item-hero">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<polyline points="12 6 12 12 16 14"/>
</svg>
<span>10+ Years</span>
</div>
<div class="trust-item-hero">
<span class="rating-stars" style="margin-right: 8px;">★★★★★</span>
<span>4.9 Rating</span>
</div>
</div>
<!-- Free Guide Download CTA -->
<a href="#" class="free-guide-cta">
<div class="guide-icon-wrapper">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/>
<polyline points="14 2 14 8 20 8"/>
<line x1="12" y1="18" x2="12" y2="12"/>
<polyline points="9 15 12 18 15 15"/>
</svg>
</div>
<div class="guide-text">
<span class="guide-label">FREE GUIDE</span>
<span class="guide-title">Holiday Lights Decorating Tips</span>
</div>
<div class="guide-arrow">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</section>
<!-- Transformation Gallery Section -->
<section class="gallery" id="gallery">
<div class="container">
<h2 class="section-headline">See the PNWLights Difference</h2>
<p class="section-subtext">Every home tells a different story. We create custom designs that complement your home's architecture and reflect your style.</p>
<div class="gallery-grid">
<div class="gallery-item" data-project="betty-lou" onclick="openProjectModal('betty-lou')">
<div class="gallery-image" style="background-image: url('./images/Betty Lou/5.jpg');">
</div>
<p class="gallery-caption">Betty Lou's Baked Goods - JOY Display<span class="view-project">View Project →</span></p>
</div>
<div class="gallery-item" data-project="windsor" onclick="openProjectModal('windsor')">
<div class="gallery-image" style="background-image: url('./images/Windsor/Big1.jpg');">
</div>
<p class="gallery-caption">Windward Rental Complex - 30ft Tree<span class="view-project">View Project →</span></p>
</div>
<div class="gallery-item" data-project="best-western" onclick="openProjectModal('best-western')">
<div class="gallery-image" style="background-image: url('./images/Best Western/2.jpg');">
</div>
<p class="gallery-caption">Best Western Hotel Lobby<span class="view-project">View Project →</span></p>
</div>
<div class="gallery-item" data-project="linda-rankin" onclick="openProjectModal('linda-rankin')">
<div class="gallery-image" style="background-image: url('./images/Linda Rankin/20201113_182136_HDR.jpg');">
</div>
<p class="gallery-caption">Historic Portland Home<span class="view-project">View Project →</span></p>
</div>
<div class="gallery-item" data-project="fairgrounds" onclick="openProjectModal('fairgrounds')">
<div class="gallery-image" style="background-image: url('./images/Mcminnville Fairgrounds/20181204_135013.jpg');">
</div>
<p class="gallery-caption">McMinnville Fairgrounds Historic Outbuilding<span class="view-project">View Project →</span></p>
</div>
<div class="gallery-item" data-project="elks-lodge" onclick="openProjectModal('elks-lodge')">
<div class="gallery-image" style="background-image: url('./images/Elks Lodge/1.jpg');">
</div>
<p class="gallery-caption">Elks Lodge - Christmas Drive-Through<span class="view-project">View Project →</span></p>
</div>
</div>
<div class="gallery-cta">
<button class="cta-button cta-primary" onclick="scrollToForm()">Imagine Your Home Like This - Request Free Design Consultation</button>
</div>
</div>
</section>
<!-- Complete Service Section -->
<section class="service-section">
<div class="container">
<h2 class="section-headline">Everything Included. Zero Hassle for You.</h2>
<p class="section-subheadline">From the moment you call us to the day we store your lights in January, you won't lift a finger.</p>
<div class="service-grid">
<div class="service-column">
<div class="service-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
<polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline>
<line x1="12" y1="22.08" x2="12" y2="12"></line>
</svg>
</div>
<h3 class="service-title">Custom Design Consultation</h3>
<p class="service-description">We visit your home, discuss your vision, and create a design that makes your property shine. No cookie-cutter installations - every display is custom-planned.</p>
</div>
<div class="service-column">
<div class="service-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>
</svg>
</div>
<h3 class="service-title">Professional Installation</h3>
<p class="service-description">Our experienced team handles everything safely with commercial-grade equipment. While you're inside enjoying cocoa, we're transforming your home into a holiday showcase.</p>
</div>
<div class="service-column">
<div class="service-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>
</svg>
</div>
<h3 class="service-title">Seasonal Care & Maintenance</h3>
<p class="service-description">Bulb out? Timer issue? We fix it - included in your service. Your lights stay perfect all season long.</p>
</div>
<div class="service-column">
<div class="service-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
</svg>
</div>
<h3 class="service-title">Safe Removal & Storage</h3>
<p class="service-description">After the holidays, we carefully remove everything and store your lights in our climate-controlled facility. Next year, we reinstall the same beautiful display.</p>
</div>
</div>
<div class="process-timeline">
<div class="timeline-step">
<div class="timeline-number">1</div>
<p>Design</p>
</div>
<div class="timeline-line"></div>
<div class="timeline-step">
<div class="timeline-number">2</div>
<p>Install</p>
</div>
<div class="timeline-line"></div>
<div class="timeline-step">
<div class="timeline-number">3</div>
<p>Maintain</p>
</div>
<div class="timeline-line"></div>
<div class="timeline-step">
<div class="timeline-number">4</div>
<p>Store</p>
</div>
</div>
<div class="service-cta">
<button class="cta-button cta-primary" onclick="scrollToForm()">Yes, You Really Do Nothing - Get Started</button>
</div>
</div>
</section>
<!-- Why Choose Professional Section -->
<section class="why-professional">
<div class="container">
<h2 class="section-headline">Why Hire a Professional Instead of DIY?</h2>
<div class="comparison-grid">
<div class="comparison-column">
<div class="comparison-icon beauty">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>
</svg>
</div>
<h3 class="comparison-title">The Beauty Difference</h3>
<ul class="comparison-list">
<li>Custom designs by experienced professionals</li>
<li>Commercial-grade lights (brighter, more durable)</li>
<li>Proper spacing, symmetry, and architectural awareness</li>
<li>Designs that complement your home, not fight it</li>
<li>Your home looks like a magazine cover, not a hobby project</li>
</ul>
</div>
<div class="comparison-column">
<div class="comparison-icon safety">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
<path d="M9 12l2 2 4-4"></path>
</svg>
</div>
<h3 class="comparison-title">The Safety Reality</h3>
<ul class="comparison-list">
<li>15,000 Americans hospitalized annually from holiday decorating falls</li>
<li>Professional training in ladder safety, roof work, and electrical</li>
<li>We carry the risk - you carry zero liability</li>
<li>Commercial insurance protects you and your property</li>
<li class="safety-warning">Middle-aged homeowners are the highest risk group - don't become a statistic this season</li>
</ul>
</div>
<div class="comparison-column">
<div class="comparison-icon time">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<polyline points="12 6 12 12 16 14"></polyline>
</svg>
</div>
<h3 class="comparison-title">The Time & Stress Savings</h3>
<ul class="comparison-list">
<li>Average DIY install: 8-16 hours over multiple weekends</li>
<li>Dealing with tangled lights, burnt bulbs, faulty timers</li>
<li>Climbing up and down ladders dozens of times</li>
<li>Storing everything for 11 months</li>
<li>Doing it all again to take them down in January</li>
</ul>
</div>
</div>
<div class="value-proposition">
<p class="value-math"><strong>The Math:</strong> DIY might save $400. Professional installation saves you 20+ hours, eliminates injury risk, and delivers results you can't achieve yourself. What's your weekend worth?</p>
</div>
<div class="why-cta">
<button class="cta-button cta-primary" onclick="scrollToForm()">Skip the Hassle, Get the Results - Book Now</button>
</div>
</div>
</section>
<!-- Social Proof Section -->
<section class="testimonials">
<div class="container">
<h2 class="section-headline">What Newberg Families Are Saying</h2>
<div class="google-review-banner">
<div class="google-review-content">
<svg class="google-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="32" height="32">
<path fill="#FFC107" d="M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12c0-6.627,5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24c0,11.045,8.955,20,20,20c11.045,0,20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z"></path>
<path fill="#FF3D00" d="M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z"></path>
<path fill="#4CAF50" d="M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z"></path>
<path fill="#1976D2" d="M43.611,20.083H42V20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z"></path>
</svg>
<div class="google-review-text">
<div class="google-stars" style="display: block; text-align: center;">★★★★★</div>
<div class="google-rating"><strong>4.9 out of 5</strong> based on 47+ Google reviews</div>
</div>
</div>
</div>
<div class="testimonial-grid">
<div class="testimonial-card">
<div class="testimonial-stars">★★★★★</div>
<p class="testimonial-text">"Our house looked absolutely magical! The team was professional, efficient, and the design they created was perfect for our home. Worth every penny to not deal with ladders and tangled lights."</p>
<p class="testimonial-author">- Sarah M., West Newberg</p>
</div>
<div class="testimonial-card">
<div class="testimonial-stars">★★★★★</div>
<p class="testimonial-text">"I was skeptical about the cost at first, but after seeing the results and realizing I didn't have to spend my entire Thanksgiving weekend on a ladder, I'm sold. They even came back when one section went out - no extra charge!"</p>
<p class="testimonial-author">- Mike T., Dundee</p>
</div>
<div class="testimonial-card">
<div class="testimonial-stars">★★★★★</div>
<p class="testimonial-text">"My neighbor recommended PNWLights and now I understand why. The installation looked amazing, and knowing professionals who are insured were handling it gave me peace of mind. My husband had fallen off a ladder two years ago doing this himself - never again!"</p>
<p class="testimonial-author">- Jennifer R., McMinnville</p>
</div>
<div class="testimonial-card">
<div class="testimonial-stars">★★★★★</div>
<p class="testimonial-text">"From the initial consultation to the final installation, everything was seamless. They listened to what we wanted and delivered beyond our expectations. Our home was the talk of the neighborhood!"</p>
<p class="testimonial-author">- David & Lisa K., Newberg</p>
</div>
</div>
<div class="social-proof-stats">
<p class="stats-line"><strong>Serving Newberg, Dundee, McMinnville & Yamhill County Since 2013</strong></p>
<p class="stats-line"><strong>Over 500 Homes Transformed</strong></p>
</div>
</div>
</section>
<!-- Local Credibility Section -->
<section class="local-credibility">
<div class="container">
<h2 class="section-headline">Proudly Serving Our Newberg Community</h2>
<div class="credibility-grid">
<div class="credibility-content">
<p class="credibility-text">We're not a national franchise or seasonal crew. We're your neighbors, and we take pride in making Yamhill County shine during the holidays. Every installation is performed by our trained, insured team - never subcontracted.</p>
<div class="credentials">
<h3 class="credentials-title">Certifications & Credentials</h3>
<ul class="credentials-list">
<li>
<svg class="check-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
Licensed & Insured in Oregon
</li>
<li>
<svg class="check-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
Professional Safety Training Certified
</li>
<li>
<svg class="check-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
Electrical Safety Compliance
</li>
<li>
<svg class="check-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
Commercial Liability Insurance
</li>
</ul>
</div>
</div>
<div class="service-area">
<h3 class="service-area-title">Service Area Map</h3>
<p style="text-align: center; color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 15px;">We serve all areas within 20 miles of Newberg, Oregon</p>
<div class="service-area-map" style="padding: 0; background: transparent; border: none;">
<!-- OpenStreetMap Embed with Service Area Circle Overlay -->
<div id="service-area-map" style="width: 100%; height: 350px; border: 2px solid rgba(255, 215, 0, 0.5); border-radius: 12px; position: relative; overflow: hidden;">
<!-- OpenStreetMap iframe (no API key needed) -->
<iframe
src="https://www.openstreetmap.org/export/embed.html?bbox=-123.8%2C44.8%2C-122.1%2C45.8&layer=mapnik&marker=45.300118%2C-122.973157"
style="width: 100%; height: 100%; border: none;"
loading="lazy"
></iframe>
<!-- SVG Circle Overlay -->
<svg style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;" viewBox="0 0 600 350" preserveAspectRatio="xMidYMid slice">
<circle cx="300" cy="175" r="100" fill="rgba(212, 175, 55, 0.25)" stroke="#2C5530" stroke-width="4"/>
</svg>
</div>
</div>
<div class="counties-served">
<h4 class="counties-title">Counties Within Our 20-Mile Service Radius:</h4>
<div class="counties-grid">
<div class="county-item primary">
<strong>Yamhill County</strong>
<span class="county-badge">Home Base</span>
</div>
<div class="county-item">Washington County</div>
<div class="county-item">Clackamas County</div>
<div class="county-item">Multnomah County</div>
<div class="county-item">Marion County</div>
<div class="county-item">Polk County</div>
</div>
</div>
<details class="cities-details">
<summary class="cities-summary">View All Cities We Serve (20-Mile Radius)</summary>
<div class="cities-by-county">
<div class="county-group">
<h5>Yamhill County (Home Base)</h5>
<p>Newberg, Dundee, McMinnville, Dayton, Lafayette, Carlton, Amity, Yamhill, Sheridan, Willamina</p>
</div>
<div class="county-group">
<h5>Washington County</h5>
<p>Sherwood, Tigard, Tualatin, King City, Durham, Beaverton, Hillsboro, Forest Grove, Cornelius, Gaston, Banks, North Plains</p>
</div>
<div class="county-group">
<h5>Clackamas County</h5>
<p>Wilsonville, Lake Oswego, West Linn, Oregon City, Canby, Aurora, Hubbard, Molalla</p>
</div>
<div class="county-group">
<h5>Multnomah County</h5>
<p>Portland (SW), Lake Oswego, Milwaukie</p>
</div>
<div class="county-group">
<h5>Marion County</h5>
<p>Woodburn, Salem, Keizer, St. Paul, Donald, Gervais</p>
</div>
<div class="county-group">
<h5>Polk County</h5>
<p>Independence, Monmouth, Dallas</p>
</div>
</div>
</details>
<p class="service-note"><strong>Most installations completed within 72 hours of booking</strong></p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq">
<div class="container">
<h2 class="section-headline">Common Questions</h2>
<div class="faq-list">
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>How far in advance should I book?</span>
<svg class="faq-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="faq-answer">
<p>We recommend booking as early as possible, ideally in September or early October. Our November weekends typically fill up by mid-October. However, we often have availability into November, so don't hesitate to reach out even if it's later in the season. We'll do our best to accommodate your timeline.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>What if a bulb goes out during the season?</span>
<svg class="faq-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="faq-answer">
<p>That's what our seasonal maintenance service is for! Simply give us a call, and we'll come out to fix any issues - whether it's a burnt bulb, a timer problem, or any other concern. This service is included in your package at no additional charge. Your display stays perfect all season long.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Can I keep the same design next year?</span>
<svg class="faq-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="faq-answer">
<p>Absolutely! We store your lights in our climate-controlled facility and keep detailed records of your custom design. When next season arrives, we'll reinstall the exact same display at a discounted rate. Many of our clients keep the same design year after year, while others like to refresh or expand their display.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Is my home too small or too big for professional installation?</span>
<svg class="faq-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="faq-answer">
<p>Not at all! We work with homes of all sizes, from cozy cottages to large estates. Every design is customized to complement your home's architecture and your budget. Whether you want a simple, elegant roofline display or a complete property transformation, we'll create a design that's perfect for your home.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>What happens if there's damage to my property?</span>
<svg class="faq-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="faq-answer">
<p>We carry comprehensive commercial liability insurance that protects both your property and our team. In the unlikely event of any damage, you're fully covered. Our team is professionally trained in safe installation practices, and we use proper equipment to protect your roof, gutters, and landscaping. We've completed hundreds of installations without incident.</p>