CoolFace
Apppublic

TainonVL/undefined

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
index.html1844 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Pros Home Painting | Seattle's Premier Home Improvement & Painting Services</title>7    <!-- ==================== FAVICON ==================== -->8    <link rel="icon" type="image/png" href="https://base.rhemacriativa.com/wp-content/uploads/2025/10/Design-sem-nome-14-e1759514033358.png">9    <link rel="apple-touch-icon" href="https://base.rhemacriativa.com/wp-content/uploads/2025/10/Design-sem-nome-14-e1759514033358.png">10    <!-- Link to icon library (Font Awesome) -->11    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">12    <!-- Integrated CSS Styles -->13    <style>14        /* ==================== FONTS & GLOBAL VARIABLES ==================== */15        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Oswald:wght@400;600;700&display=swap'); /* Added Oswald */16        :root {17            --primary-color: #0fb3ff; /* New Light Blue */18            --secondary-color: #1a1a1a; /* Black/Charcoal */19            --text-color: #333;20            --background-color: #ffffff;21            --light-gray-bg: #f7f7f7;22            /* --hero-bg-url: url('https://base.rhemacriativa.com/wp-content/uploads/2025/10/107.png'); REMOVED: Managed by layers */23        }24        /* ==================== RESET & GENERAL STYLES ==================== */25        * {26            margin: 0;27            padding: 0;28            box-sizing: border-box;29            font-family: 'Poppins', sans-serif; /* Default font */30            scroll-behavior: smooth;31        }32        body {33            color: var(--text-color);34            background-color: var(--background-color);35        }36        .container {37            max-width: 1100px;38            margin: 0 auto;39            padding: 0 20px;40        }41        h1, h2, h3 {42            color: var(--secondary-color);43        }44        h2 {45            font-size: 2.5rem;46            text-align: center;47            margin-bottom: 50px;48            font-weight: 700;49        }50        section {51            padding: 80px 0;52        }53        /* ==================== HEADER ==================== */54        header {55            background-color: var(--background-color);56            padding: 15px 0;57            border-bottom: 1px solid #eee;58            position: sticky;59            top: 0;60            z-index: 1000;61        }62        header .container {63            display: flex;64            justify-content: space-between;65            align-items: center;66        }67        header .logo img {68            height: 90px; /* Increased to 90px */69        }70        /* Apply Oswald and uppercase to header navigation and buttons */71        header .desktop-nav {72            list-style: none;73            display: flex;74            gap: 30px;75        }76        header .desktop-nav a {77            text-decoration: none;78            color: var(--secondary-color);79            font-weight: 600;80            transition: color 0.3s;81            font-family: 'Oswald', sans-serif; /* Oswald font */82            text-transform: uppercase; /* Uppercase text */83        }84        header .desktop-nav a:hover {85            color: var(--primary-color);86        }87        .header-phone-button {88            background-color: var(--primary-color);89            color: white; /* Changed to white */90            padding: 10px 20px;91            border-radius: 5px;92            text-decoration: none;93            font-weight: 600;94            transition: background-color 0.3s;95            font-family: 'Oswald', sans-serif; /* Oswald font */96            text-transform: uppercase; /* Uppercase text */97        }98        .header-phone-button:hover {99            background-color: #00a2e5; /* A slightly darker shade for hover */100        }101        #hamburger-btn {102            display: none;103            font-size: 1.8rem;104            color: var(--secondary-color);105            background: none;106            border: none;107            cursor: pointer;108        }109        /* ==================== MOBILE MENU ==================== */110        #mobile-menu {111            position: fixed;112            top: 0;113            right: -100%;114            width: 80%;115            max-width: 320px;116            height: 100vh;117            background-color: var(--secondary-color);118            z-index: 1001;119            transition: right 0.4s ease-in-out;120            padding: 60px 20px 20px 20px;121            display: flex;122            flex-direction: column;123        }124        #mobile-menu.active {125            right: 0;126        }127        #close-btn {128            position: absolute;129            top: 20px;130            right: 20px;131            font-size: 2rem;132            color: white;133            background: none;134            border: none;135            cursor: pointer;136        }137        #mobile-menu .mobile-nav-links {138            list-style: none;139        }140        #mobile-menu .mobile-nav-links li {141            margin-bottom: 20px;142            text-align: center; /* Centers links in mobile menu */143        }144        #mobile-menu .mobile-nav-links a {145            color: white;146            text-decoration: none;147            font-size: 1.5rem;148            font-weight: 600;149            font-family: 'Oswald', sans-serif; /* Oswald font */150            text-transform: uppercase; /* Uppercase text */151        }152        #mobile-menu .mobile-nav-links a:hover {153            color: var(--primary-color);154        }155        /* ==================== HERO SECTION ==================== */156        .hero-section {157            /* background-image: var(--hero-bg-url); REMOVED: Managed by layers */158            background-size: cover;159            background-position: center;160            color: white;161            text-align: center;162            padding: 120px 0;163            position: relative; /* Needed for overlay and absolute image layers */164            overflow: hidden; /* Ensures image layers are contained */165            /* transition: background-image 1s ease-in-out; REMOVED: Managed by layers opacity */166        }167        /* New styles for image layers */168        .hero-image-layer {169            position: absolute;170            top: 0;171            left: 0;172            width: 100%;173            height: 100%;174            background-size: cover;175            background-position: center;176            opacity: 0; /* Hidden by default */177            transition: opacity 1s ease-in-out; /* Smooth transition for opacity */178            z-index: 0; /* Behind the overlay and content */179        }180        .hero-image-layer.active {181            opacity: 1; /* Visible */182        }183 184        .hero-section::before { /* Overlay to darken image */185            content: '';186            position: absolute;187            top: 0;188            left: 0;189            width: 100%;190            height: 100%;191            background-color: rgba(0, 0, 0, 0.3); /* MODIFIED: Reduced overlay opacity */192            z-index: 1; /* Above image layers, below content */193        }194        .hero-section .container {195            position: relative; /* Bring content above overlay */196            z-index: 2; /* Highest z-index for content */197        }198        .hero-section h1 {199            color: white;200            font-size: 3.5rem;201            margin-bottom: 20px;202        }203        .hero-section p {204            font-size: 1.2rem;205            margin-bottom: 30px;206            max-width: 700px;207            margin-left: auto;208            margin-right: auto;209        }210        .cta-button {211            background-color: var(--primary-color);212            color: white; /* Changed to white */213            padding: 15px 30px;214            border-radius: 5px;215            text-decoration: none;216            font-size: 1.1rem;217            font-weight: 700;218            transition: transform 0.3s, background-color 0.3s;219            display: inline-block;220        }221        .cta-button:hover {222            background-color: #00a2e5; /* A slightly darker shade for hover */223            transform: translateY(-3px);224        }225        /* ==================== SERVICES ==================== */226        .services-section {227            background-color: var(--light-gray-bg);228        }229        .services-section > .container > p { /* New paragraph in services section */230            text-align: center;231            max-width: 800px;232            margin: -30px auto 50px auto; /* Adjust margin to position it below H2 */233            font-size: 1.1rem;234            line-height: 1.6;235        }236        .services-grid {237            display: grid;238            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));239            gap: 30px;240            justify-content: center;241        }242        .service-card {243            background-color: white;244            padding: 30px; /* Adjusted padding to accommodate image */245            text-align: center;246            border-radius: 8px;247            box-shadow: 0 4px 15px rgba(0,0,0,0.05);248            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added ease */249        }250        .service-card:hover {251            transform: translateY(-10px);252            box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Stronger shadow on hover */253        }254        .service-card img { /* New style for service card images */255            width: 100%;256            height: 180px; /* Fixed height for visual consistency */257            object-fit: cover; /* Ensures images cover the area without distortion */258            border-radius: 6px; /* Slightly less rounded than card */259            margin-bottom: 20px;260            display: block;261        }262        /* Removed .service-icon styling */263        .service-card h3 {264            margin-top: 15px; /* Added top margin for h3 after image/no icon */265            margin-bottom: 15px;266            color: var(--secondary-color);267            font-size: 1.4rem;268        }269        .service-card p {270            line-height: 1.6;271        }272        /* ==================== ABOUT US ==================== */273        .about-us-section {274            background-color: var(--background-color);275        }276        .about-us-content {277            display: grid;278            grid-template-columns: 1fr 1.5fr;279            align-items: center;280            gap: 50px;281        }282        .about-us-image img {283            width: 100%;284            border-radius: 8px;285            object-fit: cover;286            height: 400px;287        }288        .about-us-text h3 {289            font-size: 1.8rem;290            margin-bottom: 20px;291        }292        .about-us-text p {293            line-height: 1.8;294            margin-bottom: 15px;295        }296        .thumbtack-badge {297            max-width: 150px;298            margin-top: 20px;299            margin-bottom: 20px;300            display: block;301            margin-left: auto;302            margin-right: auto;303        }304        /* ==================== WHY CHOOSE US ==================== */305        .why-choose-us-section {306            background-color: var(--light-gray-bg);307        }308        .why-choose-grid {309            display: grid;310            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for flexible columns */311            gap: 20px;312        }313        .feature-card {314            background-color: white;315            padding: 30px;316            text-align: center;317            border-radius: 8px;318            box-shadow: 0 4px 15px rgba(0,0,0,0.05);319            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added ease */320        }321        .feature-card:hover {322            transform: translateY(-5px); /* Subtle lift effect */323            box-shadow: 0 6px 20px rgba(0,0,0,0.1); /* Stronger shadow on hover */324        }325        .feature-icon {326            font-size: 2.5rem;327            color: var(--primary-color);328            margin-bottom: 20px;329        }330        .feature-card h3 {331            font-size: 1.3rem;332            margin-bottom: 10px;333        }334        /* ==================== TESTIMONIALS ==================== */335        .testimonials-section {336            background-color: var(--background-color);337        }338        339        /* Testimonial Header */340        .testimonial-header {341            text-align: center;342            margin-bottom: 40px;343        }344        .testimonial-header p {345            max-width: 700px;346            margin: 0 auto 25px auto;347            font-size: 1.1rem;348            line-height: 1.6;349        }350 351        .review-link-button {352            background-color: var(--primary-color);353            color: white; /* Changed to white */354            padding: 12px 25px;355            border: none;356            border-radius: 25px;357            font-size: 1rem;358            font-weight: 600;359            cursor: pointer;360            transition: all 0.3s ease;361            display: inline-flex;362            align-items: center;363            gap: 8px;364            text-decoration: none;365        }366 367        .review-link-button:hover {368            background-color: #00a2e5; /* A slightly darker shade for hover */369            transform: translateY(-2px);370            box-shadow: 0 4px 15px rgba(15, 179, 255, 0.3); /* New shadow for hover */371        }372 373        .testimonial-carousel-wrapper {374            position: relative;375            max-width: 1100px;376            margin: 0 auto;377            padding: 0 50px;378        }379        .testimonial-slider-container {380            overflow: hidden;381        }382        .testimonial-slider {383            display: flex;384            transition: transform 0.5s ease-in-out;385        }386        .testimonial-card {387            flex: 0 0 calc(100% / 3 - 20px);388            margin: 0 10px;389            background-color: var(--light-gray-bg);390            padding: 40px;391            border-radius: 8px;392            display: flex;393            flex-direction: column;394            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added ease */395        }396        .testimonial-card:hover {397            transform: translateY(-5px); /* Subtle lift effect */398            box-shadow: 0 6px 20px rgba(0,0,0,0.1); /* Stronger shadow on hover */399        }400        .testimonial-card .quote-icon {401            font-size: 2.5rem;402            color: var(--primary-color);403            margin-bottom: 15px;404        }405        .testimonial-card p {406            font-style: italic;407            margin-bottom: 20px;408            flex-grow: 1;409        }410        .testimonial-card .stars {411            color: var(--primary-color);412            margin-bottom: 10px;413        }414        .testimonial-card strong {415            font-weight: 700;416            color: var(--secondary-color);417        }418 419        /* Pending Review Indicator */420        .testimonial-card.pending {421            border: 2px dashed var(--primary-color);422            opacity: 0.8;423            position: relative;424        }425 426        .testimonial-card.pending::before {427            content: "Pending Review";428            position: absolute;429            top: 10px;430            right: 10px;431            background-color: var(--primary-color);432            color: var(--secondary-color);433            padding: 4px 8px;434            border-radius: 4px;435            font-size: 0.75rem;436            font-weight: 600;437        }438 439        /* Generic Carousel Arrows & Dots - Removed dot styles */440        .carousel-arrow {441            position: absolute;442            top: 50%;443            transform: translateY(-50%);444            background-color: white;445            border: 1px solid #ddd;446            border-radius: 50%;447            width: 40px;448            height: 40px;449            font-size: 1.2rem;450            cursor: pointer;451            z-index: 10;452            transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Added ease */453            display: flex; /* For centering the icon */454            justify-content: center;455            align-items: center;456            color: var(--secondary-color); /* Icon color */457        }458        .carousel-arrow:hover {459            background-color: var(--primary-color);460            color: white; /* White icon on hover */461            border-color: var(--primary-color);462        }463        .prev-arrow { left: 0; }464        .next-arrow { right: 0; }465        .carousel-dots { /* Hidden */466            display: none;467        }468        /* ==================== GALLERY ==================== */469        .gallery-section {470            padding-bottom: 80px;471        }472        /* Default Style (Desktop): Grid */473        .gallery-grid {474            display: grid;475            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));476            gap: 15px;477        }478        .gallery-grid img {479            width: 100%;480            height: 250px;481            object-fit: cover;482            border-radius: 8px;483            transition: transform 0.3s ease; /* Added ease */484            cursor: pointer; /* Indicates clickable image */485        }486        .gallery-grid img:hover {487            transform: scale(1.05);488        }489        /* Hide carousel elements on desktop initially, JS/media query will handle display */490        .gallery-carousel-wrapper { 491            display: none; 492        }493 494        /* ==================== SERVICE AREA ==================== */495        .service-area-section {496            background-color: var(--light-gray-bg);497        }498        .service-area-content {499            display: grid;500            grid-template-columns: 1fr 1fr;501            gap: 50px;502            align-items: center;503        }504        .service-area-content > .service-list:first-child h3 {505             text-align: left; /* Align title for desktop */506        }507        .map-container {508            width: 100%;509            height: 400px;510            border-radius: 8px;511            overflow: hidden;512        }513        .map-container iframe {514            width: 100%;515            height: 100%;516            border: 0;517        }518        .service-list h3 {519            font-size: 1.8rem;520            margin-bottom: 20px;521        }522        .service-list ul {523            list-style: none;524            columns: 1; 525            gap: 10px;526        }527        .service-list li {528            margin-bottom: 10px;529            display: flex;530            align-items: center;531            gap: 10px;532            text-align: left; /* Keeps list items left-aligned */533        }534        .service-list li i {535            color: var(--primary-color);536        }537        /* ==================== CONTACT ==================== */538        .contact-section {539            background-color: var(--background-color);540        }541        .contact-section form {542            max-width: 700px;543            margin: 20px auto 0 auto;544            display: grid;545            gap: 15px;546        }547        .contact-section p {548            text-align: center;549        }550        .contact-section input,551        .contact-section select,552        .contact-section textarea {553            width: 100%;554            padding: 15px;555            border: 1px solid #ccc;556            border-radius: 5px;557            font-size: 1rem;558            transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Added ease */559        }560        .contact-section input:focus,561        .contact-section select:focus,562        .contact-section textarea:focus {563            border-color: var(--primary-color);564            box-shadow: 0 0 0 3px rgba(15, 179, 255, 0.2);565            outline: none;566        }567        .contact-section button {568            background-color: var(--primary-color);569            color: white; /* Changed to white */570            padding: 15px 30px;571            border-radius: 5px;572            border: none;573            font-size: 1.1rem;574            font-weight: 700;575            cursor: pointer;576            transition: background-color 0.3s ease; /* Added ease */577        }578        .contact-section button:hover {579            background-color: #00a2e5; /* A slightly darker shade for hover */580        }581        /* ==================== FLOATING BUTTON ==================== */582        .floating-call-button {583            position: fixed;584            bottom: 20px;585            right: 20px;586            background-color: var(--primary-color);587            color: white; /* Changed to white */588            width: 60px;589            height: 60px;590            border-radius: 50%;591            display: flex;592            justify-content: center;593            align-items: center;594            font-size: 1.5rem;595            text-decoration: none;596            box-shadow: 0 4px 15px rgba(0,0,0,0.2);597            z-index: 999;598            transition: transform 0.3s ease; /* Added ease */599        }600        .floating-call-button:hover {601            transform: scale(1.1);602        }603        /* ==================== FOOTER ==================== */604        footer {605            background-color: var(--secondary-color);606            color: #ccc;607            padding-top: 50px;608        }609        .footer-main {610            display: grid;611            grid-template-columns: 2fr 1fr 2fr;612            gap: 40px;613            padding-bottom: 40px;614            max-width: 1100px;615            margin: 0 auto;616            padding-left: 20px;617            padding-right: 20px;618        }619        .footer-logo {620            height: 40px; /* Kept at 40px */621            margin-bottom: 15px;622            filter: brightness(0) invert(1); /* Turns logo white */623        }624        .footer-column h4 {625            color: white;626            margin-bottom: 20px;627            font-size: 1.2rem;628        }629        .footer-column ul { list-style: none; }630        .footer-column ul li { margin-bottom: 10px; }631        .footer-column a { color: #ccc; text-decoration: none; transition: color 0.3s; }632        .footer-column a:hover { color: var(--primary-color); }633        .contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }634        .social-icons { margin-top: 20px; }635        .social-icons a { font-size: 1.5rem; margin-right: 15px; }636        .footer-bottom {637            border-top: 1px solid #444;638            padding: 20px;639            text-align: center;640            max-width: 1100px;641            margin: 0 auto;642        }643        .footer-bottom p {644            margin-bottom: 10px;645        }646        .footer-bottom a {647            color: #ccc;648            text-decoration: none;649            transition: color 0.3s;650        }651        .footer-bottom a:hover {652            color: var(--primary-color);653        }654 655        /* ==================== LIGHTBOX STYLES ==================== */656        .lightbox {657            display: none; /* Hidden by default */658            position: fixed; /* Stay in place */659            z-index: 2000; /* Sit on top */660            left: 0;661            top: 0;662            width: 100%; /* Full width */663            height: 100%; /* Full height */664            background-color: rgba(0,0,0,0.9); /* Black w/ opacity */665            box-sizing: border-box;666            text-align: center; /* For centering content */667        }668 669        .lightbox.active {670            display: flex; /* Use flexbox for easy centering */671            align-items: center;672            justify-content: center;673        }674 675        .lightbox-content {676            margin: auto;677            display: block;678            max-width: 90%;679            max-height: 90vh; /* Adjust for viewport height */680            object-fit: contain; /* Ensure image scales correctly */681            pointer-events: none; /* Prevent image drag from interfering with nav */682        }683 684        .lightbox-nav {685            cursor: pointer;686            position: absolute;687            top: 50%;688            transform: translateY(-50%);689            padding: 16px;690            color: white;691            font-weight: bold;692            font-size: 20px;693            transition: 0.6s ease;694            background-color: rgba(0,0,0,0.5);695            border: none;696            display: flex;697            align-items: center;698            justify-content: center;699            height: 50px;700            width: 50px;701            border-radius: 50%;702            font-size: 1.5rem; /* Icon size */703        }704 705        .lightbox-nav.prev { left: 15px; }706        .lightbox-nav.next { right: 15px; }707 708        .lightbox-nav:hover {709            background-color: rgba(0,0,0,0.8);710        }711 712        .close-btn {713            position: absolute;714            top: 15px;715            right: 35px;716            color: #f1f1f1;717            font-size: 40px;718            font-weight: bold;719            transition: 0.3s;720            cursor: pointer;721        }722 723        .close-btn:hover,724        .close-btn:focus {725            color: #bbb;726            text-decoration: none;727            cursor: pointer;728        }729 730        /* ==================== ANIMATIONS ON SCROLL ==================== */731        .animate-on-scroll {732            opacity: 0;733            transform: translateY(20px);734            transition: opacity 0.6s ease-out, transform 0.6s ease-out;735        }736 737        .animate-on-scroll.active {738            opacity: 1;739            transform: translateY(0);740        }741        /* Delay for staggered animations */742        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }743        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }744        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }745        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }746        .animate-on-scroll.delay-5 { transition-delay: 0.5s; }747        .animate-on-scroll.delay-6 { transition-delay: 0.6s; }748        .animate-on-scroll.delay-7 { transition-delay: 0.7s; }749        .animate-on-scroll.delay-8 { transition-delay: 0.8s; }750        .animate-on-scroll.delay-9 { transition-delay: 0.9s; }751        .animate-on-scroll.delay-10 { transition-delay: 1.0s; }752        .animate-on-scroll.delay-11 { transition-delay: 1.1s; }753        .animate-on-scroll.delay-12 { transition-delay: 1.2s; }754        .animate-on-scroll.delay-13 { transition-delay: 1.3s; }755 756 757        /* ==================== RESPONSIVENESS ==================== */758        @media (max-width: 992px) {759            .header-phone-button { display: none; }760            .footer-main { grid-template-columns: 1fr 1fr; }761            .about-us-content, .service-area-content { grid-template-columns: 1fr; }762            .about-us-image { order: -1; }763            .testimonial-card { flex-basis: calc(100% / 2 - 20px); } /* 2 cards on tablets */764            .why-choose-grid {765                grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */766            }767            header .logo img {768                height: 70px; /* Reduces logo in header for tablets */769            }770        }771        @media (max-width: 768px) {772            h2 { font-size: 2rem; }773            .hero-section h1 { font-size: 2.5rem; }774            .footer-main { grid-template-columns: 1fr; text-align: center; }775            .contact-info p { justify-content: center; }776            .footer-bottom { flex-direction: column; gap: 10px; }777            header .desktop-nav { display: none; }778            #hamburger-btn { display: block; }779            780            .container {781                text-align: center; /* Centers most text on mobile */782            }783            .about-us-image img {784                height: 300px; /* Reduces "About Us" image height on mobile */785            }786            .service-list ul {787                display: inline-block; /* Allows centering of ul */788                text-align: left; /* Keeps text of list items left-aligned within ul */789                padding-left: 20px; /* Adjust padding if necessary */790            }791            .service-list li {792                justify-content: flex-start; /* Aligns li content to the left */793            }794            .service-area-content > .service-list:first-child h3 {795                text-align: center; /* Align title for mobile */796            }797 798            .why-choose-grid {799                grid-template-columns: 1fr; /* 1 column on mobile */800            }801            .thumbtack-badge {802                max-width: 120px; /* Slightly smaller on mobile */803            }804            /* Testimonials Mobile */805            .testimonial-carousel-wrapper { padding: 0 40px; }806            .carousel-arrow { width: 35px; height: 35px; font-size: 1rem; }807            .testimonial-carousel-wrapper .prev-arrow { left: -5px; }808            .testimonial-carousel-wrapper .next-arrow { right: -5px; }809            .testimonial-card { flex-basis: calc(100% - 20px); } /* 1 card on mobile */810            /* === GALLERY AS CAROUSEL (MOBILE) === */811            .gallery-grid { display: none !important; } /* Hide grid on mobile */812            .gallery-carousel-wrapper {813                display: block !important; /* Show carousel wrapper */814                position: relative;815                padding: 0 40px;816            }817            .gallery-slider-container {818                overflow: hidden;819            }820            .gallery-slider {821                display: flex;822                transition: transform 0.5s ease-in-out;823            }824            .gallery-item {825                flex: 0 0 100%;826                padding: 0 5px;827            }828            .gallery-item img {829                width: 100%;830                height: 250px;831                object-fit: cover;832                border-radius: 8px;833                cursor: pointer;834            }835            .gallery-carousel-wrapper .prev-arrow { left: -5px; }836            .gallery-carousel-wrapper .next-arrow { right: -5px; }837 838            .lightbox-nav.prev { left: 5px; }839            .lightbox-nav.next { right: 5px; }840            .close-btn { top: 10px; right: 15px; font-size: 30px; }841        }842        /* Correction for Why Choose Us on smaller screens */843        @media (max-width: 1024px) {844            .why-choose-grid {845                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));846            }847        }848        @media (max-width: 600px) {849            .why-choose-grid {850                grid-template-columns: 1fr; /* 1 column on small mobile */851            }852            .feature-card h3 { font-size: 1.2rem; }853        }854    </style>855</head>856<body>857    <!-- ==================== HEADER ==================== -->858    <header>859        <div class="container">860            <a href="#home" class="logo">861                <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/Design-sem-nome-14-e1759514033358.png" alt="Pros Home Painting Logo">862            </a>863            <nav>864                <ul class="desktop-nav">865                    <li><a href="#home">Home</a></li>866                    <li><a href="#services">Services</a></li>867                    <li><a href="#about">About</a></li>868                    <li><a href="#why-choose-us">Why Us</a></li>869                    <li><a href="#testimonials">Testimonials</a></li>870                    <li><a href="#gallery">Gallery</a></li>871                    <li><a href="#contact">Contact</a></li>872                </ul>873            </nav>874            <a href="tel:+18572744995" class="header-phone-button">Book your estimate</a>875            <button id="hamburger-btn" aria-label="Open Menu">876                <i class="fa-solid fa-bars"></i>877            </button>878        </div>879    </header>880    <!-- ==================== MOBILE MENU ==================== -->881    <div id="mobile-menu">882        <button id="close-btn" aria-label="Close Menu">883            <i class="fa-solid fa-xmark"></i>884        </button>885        <ul class="mobile-nav-links">886            <li><a href="#home">Home</a></li>887            <li><a href="#services">Services</a></li>888            <li><a href="#about">About</a></li>889            <li><a href="#why-choose-us">Why Us</a></li>890            <li><a href="#testimonials">Testimonials</a></li>891            <li><a href="#gallery">Gallery</a></li>892            <li><a href="#contact">Contact</a></li>893        </ul>894    </div>895    <main>896        <!-- ==================== HERO SECTION ==================== -->897        <section id="home" class="hero-section">898            <!-- Image layers for smooth crossfade -->899            <div class="hero-image-layer" id="hero-layer-1"></div>900            <div class="hero-image-layer" id="hero-layer-2"></div>901 902            <div class="container animate-on-scroll">903                <h1>Your Vision, Our Expertise: Unmatched Home Transformations in Seattle, WA</h1>904                <p>Redefining homes and businesses across Seattle and the Greater Seattle area with unparalleled quality, meticulous precision, and a commitment to transforming your vision into reality. Experience the difference that makes us the #1 choice for your next project!</p>905                <a href="#contact" class="cta-button">BOOK YOUR ESTIMATE</a>906            </div>907        </section>908        <!-- ==================== SERVICES ==================== -->909        <section id="services" class="services-section">910            <div class="container">911                <h2 class="animate-on-scroll">Our Exceptional Services</h2>912                <p class="animate-on-scroll delay-1">From a complete home transformation to a simple, elegant refresh, our comprehensive services are meticulously tailored to exceed your vision and perfectly align with your budget. Discover why we're the trusted experts for every home improvement need.</p>913                <div class="services-grid">914                    <div class="service-card animate-on-scroll delay-2">915                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/80.png" alt="Interior Painting">916                        <h3>Interior Painting</h3>917                        <p>Flawless finishes for your walls, ceilings, and trim. We bring new life to your indoor spaces with precision and care, ensuring a vibrant and lasting impression.</p>918                    </div>919                    <div class="service-card animate-on-scroll delay-3">920                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/81.png" alt="Exterior Painting">921                        <h3>Exterior Painting</h3>922                        <p>Boost your curb appeal and protect your home from the elements with our durable, high-quality exterior paint jobs, built to withstand Seattle's unique climate.</p>923                    </div>924                    <div class="service-card animate-on-scroll delay-4">925                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/82.png" alt="Carpentry">926                        <h3>Carpentry</h3>927                        <p>Expert carpentry services for custom installations, precise repairs, and decorative enhancements that truly elevate your home's aesthetic and functionality.</p>928                    </div>929                    <div class="service-card animate-on-scroll delay-5">930                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/83.png" alt="Kitchen Remodeling">931                        <h3>Kitchen Remodeling</h3>932                        <p>Complete kitchen transformations from initial design to flawless installation, crafting functional, beautiful, and highly personalized culinary spaces.</p>933                    </div>934                    <div class="service-card animate-on-scroll delay-6">935                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/84.png" alt="Drywall Repair">936                        <h3>Drywall Repair</h3>937                        <p>Seamless drywall repairs for all cracks, holes, and imperfections, ensuring perfectly smooth and paint-ready surfaces that look brand new.</p>938                    </div>939                    <div class="service-card animate-on-scroll delay-7">940                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/85.png" alt="Drywall Installation">941                        <h3>Drywall Installation</h3>942                        <p>Professional drywall installation for new constructions or renovations, providing a solid, expertly finished foundation for all your interior aesthetics.</p>943                    </div>944                    <div class="service-card animate-on-scroll delay-8">945                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/86.png" alt="Plastering a Wall">946                        <h3>Plaster</h3>947                        <p>Traditional and modern plaster applications to create exquisitely durable, remarkably smooth, and elegantly textured walls and ceilings, adding timeless charm.</p>948                    </div>949                    <div class="service-card animate-on-scroll delay-9">950                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/87.png" alt="Pressure Washing">951                        <h3>Pressure Wash</h3>952                        <p>Restore the true beauty of your siding, decks, and driveways with our powerful pressure washing service, effectively removing all dirt, grime, and mildew.</p>953                    </div>954                    <div class="service-card animate-on-scroll delay-10">955                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/88.png" alt="House Siding">956                        <h3>Siding</h3>957                        <p>Expert installation and repair of various siding types to protect and significantly enhance your home's exterior appeal and insulation efficiency.</p>958                    </div>959                </div>960            </div>961        </section>962        <!-- ==================== ABOUT US ==================== -->963        <section id="about" class="about-us-section">964            <div class="container">965                <h2 class="animate-on-scroll">Discover Pros Home Painting: Seattle's Premier Home Transformation Experts</h2>966                <div class="about-us-content">967                    <div class="about-us-image animate-on-scroll delay-1">968                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/Design-sem-nome-15.png" alt="Team of Pros Home Painting working on a project.">969                    </div>970                    <div class="about-us-text animate-on-scroll delay-2">971                        <h3>Seattle's Top-Rated Choice for Unrivaled Quality & Customer Satisfaction</h3>972                        <div style="text-align: center; max-width: 800px; margin: 0 auto;">973                            <p>At <strong>Pros Home Painting</strong>, we don't just improve homes—we elevate lifestyles. As a Thumbtack Top Pro with years of experience, our fully licensed, insured, and deeply passionate team is dedicated to delivering nothing short of excellence. We ensure every project, from the smallest touch-up to the largest renovation, results in beautiful, durable, and spotlessly clean spaces that exceed your wildest expectations.</p>974                            <p>Our process is meticulously streamlined, ensuring clear, consistent communication from the initial consultation to the final, immaculate cleanup. We utilize only the highest-quality materials and employ proven techniques to guarantee a flawless finish, transforming your property into a masterpiece that retains its stunning appeal for years. Choose us, and experience the peace of mind that comes with hiring the very best.</p>975                        </div>976                        <img src="https://base.rhemacriativa.com/wp-content/uploads/2025/10/LM-Painting-Services-4-e1759955787248.png" alt="Thumbtack Top Pro Badge" class="thumbtack-badge animate-on-scroll delay-3" style="margin: 20px auto; display: block;">977                    </div>978</div>979            </div>980        </section>981        <!-- ==================== WHY CHOOSE US ==================== -->982        <section id="why-choose-us" class="why-choose-us-section">983            <div class="container">984                <h2 class="animate-on-scroll">Why Pros Home Painting Stands Above the Rest</h2>985                <div class="why-choose-grid">986                    <div class="feature-card animate-on-scroll delay-1">987                        <i class="fa-solid fa-award feature-icon"></i>988                        <h3>Experienced Professionals</h3>989                        <p>Our elite team boasts years of hands-on experience, consistently delivering superior results for both residential and commercial projects.</p>990                    </div>991                    <div class="feature-card animate-on-scroll delay-2">992                        <i class="fa-solid fa-shield-halved feature-icon"></i>993                        <h3>Fully Licensed & Insured</h3>994                        <p>Enjoy complete peace of mind knowing we are fully certified, licensed, and comprehensively insured for every service we provide.</p>995                    </div>996                    <div class="feature-card animate-on-scroll delay-3">997                        <i class="fa-solid fa-hammer feature-icon"></i>998                        <h3>Unmatched Quality Craftsmanship</h3>999                        <p>Every detail matters. We take immense pride in our meticulous precision, flawless finishes, and delivering truly long-lasting results that speak for themselves.</p>1000                     </div>1001                     <div class="feature-card animate-on-scroll delay-4">1002                        <i class="fa-solid fa-broom feature-icon"></i> 1003                        <h3>Pristine Worksite & Satisfaction</h3>1004                        <p>We guarantee a spotless worksite during and after every project, coupled with our unwavering commitment to your absolute satisfaction.</p>1005                    </div>1006                </div>1007            </div>1008        </section>1009        <!-- ==================== TESTIMONIALS ==================== -->1010        <section id="testimonials" class="testimonials-section">1011            <div class="container">1012                <h2 class="animate-on-scroll">Hear From Our Thrilled Clients: Real Stories of Transformation</h2>1013                1014                <!-- Link to review page -->1015                <div class="testimonial-header animate-on-scroll delay-1">1016                    <p>Join the ranks of our delighted clients! Your feedback helps us maintain our Thumbtack Top Pro status and fuels our passion for excellence. Share your experience!</p>1017                    <a href="review.html" class="review-link-button">1018                        <i class="fa-solid fa-star"></i> Leave a Review1019                    </a>1020                </div>1021 1022                <div class="testimonial-carousel-wrapper animate-on-scroll delay-2">1023                    <div class="testimonial-slider-container">1024                        <div class="testimonial-slider" id="testimonial-slider">1025                            <div class="testimonial-card">1026                                <i class="fa-solid fa-quote-left quote-icon"></i>1027                                <p>"I had my popcorn ceiling removed, ceiling retextured, and painted by Pros Home Painting. They were responsive, professional, and friendly from the start. I was given updates throughout the project. The final result exceeded my expectations! I strongly recommend this company for any drywall or painting work — they do what needs to be done, and they do it right."</p>1028                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Michael S. (Jun 2024)</strong></div>1029                            </div>1030                            <div class="testimonial-card">1031                                <i class="fa-solid fa-quote-left quote-icon"></i>1032                                <p>"Juliano did a wonderful job fixing our drywall crack that looked really bad. He not only helped with patching and texturing but also went the extra mile painting the drywall. Very motivated, professional, and passionate about his work! He even cleaned up at the end of each day, which was great. Thank you Juliano for making our drywall look beautiful — see you again soon!"</p>1033                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Hari T. (Jun 2024)</strong></div>1034                            </div>1035                            <div class="testimonial-card">1036                                <i class="fa-solid fa-quote-left quote-icon"></i>1037                                <p>"Juliano was super responsive and professional. He was respectful of our home while replacing a wall after fireplace removal. The blending between new and old drywall was perfect, and the texture matched beautifully. He also gave great advice on paints. We’re very satisfied and will definitely use his company again!"</p>1038                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Jane G. (May 2024)</strong></div>1039                            </div>1040                            <div class="testimonial-card">1041                                <i class="fa-solid fa-quote-left quote-icon"></i>1042                                <p>"Juliano was great to work with and had excellent communication. I look forward to working with him again."</p>1043                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Marlo L. (May 2024)</strong></div>1044                            </div>1045                            <div class="testimonial-card">1046                                <i class="fa-solid fa-quote-left quote-icon"></i>1047                                <p>"Juliano did amazing work and came quickly when requested. He finished everything in no time. I’ll definitely hire him again!"</p>1048                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Rajvi N. (May 2024)</strong></div>1049                            </div>1050                            <div class="testimonial-card">1051                                <i class="fa-solid fa-quote-left quote-icon"></i>1052                                <p>"Absolutely loved my experience with Pros Home Painting! Fast, diligent, and came with all the right tools. The wall looks perfect — like there was never any damage. Wish all home professionals were as reliable as them!"</p>1053                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Jennifer S. (Apr 2024)</strong></div>1054                            </div>1055                            <div class="testimonial-card">1056                                <i class="fa-solid fa-quote-left quote-icon"></i>1057                                <p>"Did an excellent job and cleaned up afterward. Very professional and efficient!"</p>1058                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Gayle L. (Apr 2024)</strong></div>1059                            </div>1060                            <div class="testimonial-card">1061                                <i class="fa-solid fa-quote-left quote-icon"></i>1062                                <p>"Juliano did an amazing job repairing our drywall after a leak. We were so impressed that we also hired him to paint the room — flawless results! Great attention to detail and the cleanest crew we’ve ever had. Highly recommend!"</p>1063                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Bryan F. (Mar 2024)</strong></div>1064                            </div>1065                            <div class="testimonial-card">1066                                <i class="fa-solid fa-quote-left quote-icon"></i>1067                                <p>"Impeccable work for a fair price. Juliano is reliable, pleasant, and very professional. Highly recommend!"</p>1068                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Christiane L. (Mar 2024)</strong></div>1069                            </div>1070                            <div class="testimonial-card">1071                                <i class="fa-solid fa-quote-left quote-icon"></i>1072                                <p>"Great job! Thank you for completing it in a timely manner."</p>1073                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Hilary K. (Mar 2024)</strong></div>1074                            </div>1075                            <div class="testimonial-card">1076                                <i class="fa-solid fa-quote-left quote-icon"></i>1077                                <p>"Amazing work done within a day. So cooperative and professional. Highly recommended!"</p>1078                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Sushmita G. (Jan 2024)</strong></div>1079                            </div>1080                            <div class="testimonial-card">1081                                <i class="fa-solid fa-quote-left quote-icon"></i>1082                                <p>"We had to get drywall fixed, add a supporting stud, and repaint the wall to hang heavy curtains. Juliano did an amazing job! He explained everything clearly, arrived on the promised day, and completed everything diligently. The wall looks amazing — we’d hire him again."</p>1083                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Anu N. (Jan 2024)</strong></div>1084                            </div>1085                            <div class="testimonial-card">1086                                <i class="fa-solid fa-quote-left quote-icon"></i>1087                                <p>"Juliano was helpful every step of the way. He came prepared, made sure everything was done right, and even returned several times to ensure we were happy. He lent me tools for other parts of the project and was always a pleasure to have around!"</p>1088                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Brian E. (Jan 2024)</strong></div>1089                            </div>1090                            <div class="testimonial-card">1091                                <i class="fa-solid fa-quote-left quote-icon"></i>1092                                <p>"Juliano did a great job installing drywall and painting our bathroom. He was responsive, did exactly what he said, and made sure we were happy throughout the project. I plan to rehire him."</p>1093                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Natalie H. (Dec 2023)</strong></div>1094                            </div>1095                            <div class="testimonial-card">1096                                <i class="fa-solid fa-quote-left quote-icon"></i>1097                                <p>"Excellent service. Highly recommend!"</p>1098                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- LaShon M. (Dec 2023)</strong></div>1099                            </div>1100                            <div class="testimonial-card">1101                                <i class="fa-solid fa-quote-left quote-icon"></i>1102                                <p>"Juliano did an amazing job with our drywall repair project! He repaired holes from a lighting project and a leak in the ceiling that we thought would be hard to fix. He was kind, professional, and thorough. Can’t recommend him enough!"</p>1103                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Amanda R. (Dec 2023)</strong></div>1104                            </div>1105                            <div class="testimonial-card">1106                                <i class="fa-solid fa-quote-left quote-icon"></i>1107                                <p>"Juliano was so nice and went the extra mile to complete the project. He patiently listened to our needs and even traveled from Seattle to help with our small job. Very friendly and good value!"</p>1108                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Tina M. (Mar 2023)</strong></div>1109                            </div>1110                            <div class="testimonial-card">1111                                <i class="fa-solid fa-quote-left quote-icon"></i>1112                                <p>"I’m impressed! Juliano from Pros Home Painting did a great job repairing our drywall — professional, punctual, and positive. He even cleaned up after himself. Everything looks great. I’ll definitely call him again."</p>1113                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Ben P. (Feb 2023)</strong></div>1114                            </div>1115                            <div class="testimonial-card">1116                                <i class="fa-solid fa-quote-left quote-icon"></i>1117                                <p>"Juliano repaired multiple drywall sections for us. He was professional, communicated clearly, and cleaned everything afterward. Will definitely hire him again."</p>1118                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Sameer K. (Jan 2023)</strong></div>1119                            </div>1120                            <div class="testimonial-card">1121                                <i class="fa-solid fa-quote-left quote-icon"></i>1122                                <p>"Very experienced and detail-oriented. Juliano made sure everything was done correctly. Highly recommend!"</p>1123                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Ian L. (Jan 2023)</strong></div>1124                            </div>1125                            <div class="testimonial-card">1126                                <i class="fa-solid fa-quote-left quote-icon"></i>1127                                <p>"Pros Home were responsive, punctual, and clear in communication. They finished on time and managed everything perfectly. Juliano is skilled and passionate about his work. Highly recommend for any renovation project!"</p>1128                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Anita M. (Jan 2023)</strong></div>1129                            </div>1130                            <div class="testimonial-card">1131                                <i class="fa-solid fa-quote-left quote-icon"></i>1132                                <p>"Juliano did a small drywall repair after electrical work. He was quick, professional, and exceptionally clean — vacuumed and mopped after himself. Great experience!"</p>1133                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Josh P. (Sep 2021)</strong></div>1134                            </div>1135                            <div class="testimonial-card">1136                                <i class="fa-solid fa-quote-left quote-icon"></i>1137                                <p>"Excellent to work with — punctual, honest, and high-quality results. Juliano helped with drywall patching and painting. Everything was delivered as promised."</p>1138                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Sonali S. (Aug 2021)</strong></div>1139                            </div>1140                            <div class="testimonial-card">1141                                <i class="fa-solid fa-quote-left quote-icon"></i>1142                                <p>"Delightful professional, attentive, and great work quality. Outstanding value!"</p>1143                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Asher N. (Jul 2021)</strong></div>1144                            </div>1145                            <div class="testimonial-card">1146                                <i class="fa-solid fa-quote-left quote-icon"></i>1147                                <p>"Juliano was excellent to work with! He takes pride in his work and commits fully to quality. He helped with sanding, applying texture, and painting. Very kind and professional — highly recommended!"</p>1148                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Roya H. (Apr 2021)</strong></div>1149                            </div>1150                            <div class="testimonial-card">1151                                <i class="fa-solid fa-quote-left quote-icon"></i>1152                                <p>"Juliano shows the highest level of performance. Excellent drywall repair and painting at a great value — quality beyond praise!"</p>1153                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Larry G. (Apr 2021)</strong></div>1154                            </div>1155                            <div class="testimonial-card">1156                                <i class="fa-solid fa-quote-left quote-icon"></i>1157                                <p>"We chose Pros Home Painting because of their professionalism and transparency. Juliano did a beautiful job on our ceiling drywall — no surprises and perfect results."</p>1158                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Tara H. (Apr 2021)</strong></div>1159                            </div>1160                            <div class="testimonial-card">1161                                <i class="fa-solid fa-quote-left quote-icon"></i>1162                                <p>"Juliano painted our condo beautifully. Very polite and accommodating — would definitely hire again!"</p>1163                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Shilpa V. (Mar 2021)</strong></div>1164                            </div>1165                            <div class="testimonial-card">1166                                <i class="fa-solid fa-quote-left quote-icon"></i>1167                                <p>"Juliano did an incredible job with our windows. Dependable and takes great pride in his work."</p>1168                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Shafin K. (Mar 2021)</strong></div>1169                            </div>1170                            <div class="testimonial-card">1171                                <i class="fa-solid fa-quote-left quote-icon"></i>1172                                <p>"Perfect job in record time at a great price!"</p>1173                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- George A. (Feb 2021)</strong></div>1174                            </div>1175                            <div class="testimonial-card">1176                                <i class="fa-solid fa-quote-left quote-icon"></i>1177                                <p>"Amazing work and great price! So reasonable — I’ll definitely be doing more business!"</p>1178                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- A. D. (Feb 2021)</strong></div>1179                            </div>1180                            <div class="testimonial-card">1181                                <i class="fa-solid fa-quote-left quote-icon"></i>1182                                <p>"Juliano painted our bathroom, laundry room, and rec room. Excellent job! He’s hardworking, gives great advice, and takes pride in his work. Everything looks beautiful!"</p>1183                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Ann H. (Feb 2021)</strong></div>1184                            </div>1185                            <div class="testimonial-card">1186                                <i class="fa-solid fa-quote-left quote-icon"></i>1187                                <p>"So thankful for Juliano at Pros Home Painting! We accidentally made two big holes in our drywall — he fixed everything quickly and professionally. The walls look brand new. Pricing was fair, and the experience was great. 1000% recommended!"</p>1188                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Angela P. (Feb 2021)</strong></div>1189                            </div>1190                            <div class="testimonial-card">1191                                <i class="fa-solid fa-quote-left quote-icon"></i>1192                                <p>"Very professional — explained the process, kept me updated, and delivered excellent results. The wall looks like new!"</p>1193                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Gaurav B. (Feb 2021)</strong></div>1194                            </div>1195                            <div class="testimonial-card">1196                                <i class="fa-solid fa-quote-left quote-icon"></i>1197                                <p>"Fantastic to work with! Juliano was quick, friendly, and professional. Our bathroom turned out amazing — we’ve already hired him again!"</p>1198                                <div><div class="stars">⭐⭐⭐⭐⭐</div><strong>- Janessa J. (Feb 2021)</strong></div>1199                            </div>1200                        </div>

Showing the first 1,200 of 1844 lines. Download the file for the rest.