* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #nav-free-quote {
          color: var(--white);
        }

        :root {
            --dark: #0c4a6e;
            --blue: #0ea5e9;
            --light-gray: #f0f9ff;
            --white: #ffffff;
            --text: #334155;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1.5rem 1;
            box-shadow: 0 20px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--dark);
        }

        .brand span {
            color: var(--blue);
        }
        
        .brand img {
            /*margin-right: 0px;
            float: left;*/
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
            font-size: 1.1rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--blue);;
        }

        .quote-btn {
            background: var(--blue);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .quote-btn:hover {
            background: #0284c7;
            transform: translateY(-2px);
        }

        .menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(12, 74, 110, 0.60), rgba(3, 105, 161, 0.60)), 
                        url(https://imgproxy.divecdn.com/aDllP5F1vTJ9Q2-PXJejNr3zwz4nDPj1vQeNNZoXxWs/g:ce/rs:fill:1200:675:1/Z3M6Ly9kaXZlc2l0ZS1zdG9yYWdlL2RpdmVpbWFnZS9UaGVfQ29tbW9uc19hdF9Db3R0b253b29kX0NyZWVrXy1fUmVuZGVyaW5nLnBuZw==.webp) center/cover no-repeat;
            color: var(--white);
            padding: 12.8rem 2rem 6rem;
            text-align: center;
            background-attachment: fixed;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-highlight {
            color: #7dd3fc;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
            padding: 1.2rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #0284c7;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark);
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--blue);
            color: var(--white);
            padding: 1rem 2rem;
            margin-top: 0px;
        }

        .stats-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2.5rem;
            margin-top: 0.5rem;
        }

        .stat-box p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Services */
        .services {
            padding: 3rem 2rem;
            background: var(--light-gray);
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            color: var(--blue);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 0.8rem;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.15rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .service-box {
            background: var(--white);
            padding: 0;
            border-radius: 12px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .service-box:hover {
            border-left-color: var(--blue);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
        }

        .service-content {
            padding: 1rem;
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .service-box h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .service-box p {
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 0.4rem 0;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-list li:before {
            content: "→";
            color: var(--blue);
            font-weight: bold;
        }

        /* About Section */
        .about {
            padding: 2.5rem 2rem;
            background: var(--light-gray);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .features-list {
            list-style: none;
            margin-top: 2rem;
        }

        .features-list li {
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .features-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .check-icon {
            background: var(--blue);
            color: var(--white);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .about-image {
            background: linear-gradient(rgba(14, 165, 233, 0.9), rgba(2, 132, 199, 0.9)),
                        url(https://www.proservicescanhelp.com/wp-content/uploads/2016/07/Home-Remodeling-Home-Construction-General-Contractor-DC.jpg) center/cover no-repeat;
            padding: 3rem;
            border-radius: 16px;
            text-align: center;
            color: var(--white);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .image-placeholder {
            font-size: 5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .about-image h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Contact CTA */
        .cta-banner {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
                        url(https://www.proservicescanhelp.com/wp-content/uploads/2016/07/Home-Remodeling-Home-Construction-General-Contractor-DC.jpg) center/cover no-repeat;
            color: var(--white);
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-banner h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        /* Contact Form */
        .contact {
            padding: 1rem 2rem;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .info-item {
            margin-bottom: 2rem;
            display: flex;
            gap: 1.2rem;
        }

        .info-icon {
            background: var(--light-gray);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-text h4 {
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .info-text p {
            color: var(--text);
        }

        .contact-form {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 5px;
        }

        .contact-form h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: var(--blue);
            color: var(--white);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: #0284c7;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 2.5rem;
        }

        footer p {
            opacity: 0.8;
        }

        .footer-highlight {
            color: var(--blue);
            font-weight: bold;
        }

        #home, #services, #about, #contact {
            scroll-margin-top: 100px;
        }   

        .projects-completed_icon, .experience_icon, .licensed-insured_icon, .emergency-service_icon {
            width: 60px;
            height: 60px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .cta-banner h2 {
                font-size: 2rem;
            }
        }

    .nav-menu a.active {
        color: var(--blue);
        border-bottom: 2px solid var(--blue);
        padding-bottom: 4px;
    }

    .nav-menu a:hover {
        color: var(--blue);
        border-bottom: 2px solid var(--blue);
        /*padding-bottom: 4px;*/
    }

    /* ===== FOOTER STYLES ===== */

/*footer {
    background: #0c4a6e;
    color: var(--white);
    padding: 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section:first-child {
    padding-left: 0;
}

.footer-section h3 {
    color: #7dd3fc;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0ea5e9;
    display: inline-block;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: #7dd3fc;
    transform: translateX(5px);
}

.footer-section i {
    width: 20px;
    text-align: center;
    color: #0ea5e9;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
}

.footer-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.footer-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.hours-highlight {
    color: #7dd3fc;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-highlight {
    color: #7dd3fc;
    font-weight: 600;
}

.footer-license {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
} */

/* ===== RESPONSIVE FOOTER ===== */
/*@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 0;
        text-align: center;
    }
    
    .footer-section h3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-section a {
        justify-content: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-container {
        padding: 2rem 1rem;
    }
} */


/* ===== LOGO LINK ===== */
/*.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}*/

