
        /* General Styles & Reset */
        :root {
            --primary-color: #2c3e50; /* Dark Blue */
            --secondary-color: #f39c12; /* Orange */
            --accent-color: #3498db; /* Blue */
            --text-color: #333;
            --light-bg: #ecf0f1; /* Light Gray */
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        h2 {
            font-size: 2.8em;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        p {
            margin-bottom: 1em;
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 12px 35px ;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background-color: #e67e22; /* Slightly darker orange */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px var(--shadow);
        }

        .btn-primary {
            background-color: var(--primary-color);
        }
        .btn-primary:hover {
            background-color: #1a252f;
        }

        /* Header */
        .header {
            background-color: var(--white);
            color: var(--primary-color);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8em;
            font-weight: 700;
            color: var(--primary-color);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .nav ul {
            list-style: none;
            display: flex;
        }

        .nav ul li {
            margin-left: 25px;
        }

        .nav ul li a {
            color: var(--primary-color);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            transition: var(--transition);
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .nav ul li a:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            font-size: 1.8em;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: url('../img/hero.jpg') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            padding: 200px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 80px; /* To account for fixed header */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3em;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about .container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-content, .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--shadow);
        }

        /* Services Section */
        .services {
            background-color: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .service-item {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            transition: var(--transition);
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--shadow);
        }

        .service-item i {
            font-size: 3em;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5em;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* Why Choose Us Section */
        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .reason-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: var(--transition);
        }
        .reason-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .reason-item i {
            font-size: 2.5em;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .reason-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.4em;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* Home Warranty Section */
        .home-warranty {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }

        .home-warranty h2 {
            color: var(--white);
        }
        .home-warranty h2::after {
            background: var(--secondary-color);
        }

        .home-warranty p {
            font-size: 1.2em;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-bg);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            text-align: center;
            position: relative;
        }

        .testimonial-item i.fa-quote-left {
            font-size: 2em;
            color: var(--secondary-color);
            position: absolute;
            top: 20px;
            left: 20px;
            opacity: 0.2;
        }
        .testimonial-item i.fa-quote-right {
            font-size: 2em;
            color: var(--secondary-color);
            position: absolute;
            bottom: 20px;
            right: 20px;
            opacity: 0.2;
        }

        .testimonial-item p {
            font-style: italic;
            margin: 20px 0;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 15px;
            display: block;
        }

        .stars {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .contact-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .contact-info, .quotes-form-container {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 1.8em;
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        .contact-item i {
            color: var(--secondary-color);
            font-size: 1.5em;
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }

        .contact-map {
            margin-top: 30px;
            background-color: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
        }

        .contact-map iframe {
            width: 100%;
            height: 300px;
            border: 0;
        }

        /* Get Free Quotes Form */
        .quotes-form-container {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .quotes-form-container h3 {
            font-size: 1.8em;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1em;
            transition: border-color var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        #quote-confirmation {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: none; /* Hidden by default */
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: left;
            margin-bottom: 30px;
        }

        .footer-col {
            width: 250px;
            margin: 20px;
        }

        .footer-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2em;
            color: var(--secondary-color);
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            background-color: var(--accent-color);
            height: 2px;
            width: 50px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li:not(:last-child) {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--white);
            display: block;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-col .social-links a {
            display: inline-block;
            height: 40px;
            width: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            margin: 0 10px 10px 0;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .footer-col .social-links a:hover {
            color: var(--primary-color);
            background-color: var(--white);
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9em;
        }

        /* Modals */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1001; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--white);
            margin: auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 5px 15px var(--shadow);
            position: relative;
            animation-name: animatetop;
            animation-duration: 0.4s;
            max-height: 80vh;
            overflow-y: auto;
        }

        /* Add Animation */
        @keyframes animatetop {
            from {top: -300px; opacity: 0}
            to {top: 0; opacity: 1}
        }

        .close-button {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .close-button:hover,
        .close-button:focus {
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
        }

        .modal h3 {
            font-size: 2em;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }

        .modal .form-group label {
            display: flex;
            align-items: center;
        }

        .modal .form-group input[type="checkbox"] {
            width: auto;
            margin-right: 10px;
        }

        #newsletter-confirmation {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: none; /* Hidden by default */
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--white);
                position: absolute;
                top: 80px; /* Adjust based on header height */
                left: 0;
                box-shadow: 0 5px 15px var(--shadow);
                padding-bottom: 20px;
            }

            .nav ul.active {
                display: flex;
            }

            .nav ul li {
                margin: 0;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .nav ul li:last-child {
                border-bottom: none;
            }

            .nav ul li a {
                display: block;
                padding: 15px 0;
                width: 100%;
            }
            .nav ul li a::after {
                display: none;
            }
            .nav ul li a:hover {
                background-color: var(--light-bg);
            }

            .nav-toggle {
                display: block;
            }

            .hero {
                padding: 150px 0;
                margin-top: 80px;
            }
            .hero h1 {
                font-size: 3em;
            }
            .hero p {
                font-size: 1.1em;
            }

            .about .container {
                flex-direction: column;
            }
            .about-content, .about-image {
                min-width: unset;
                width: 100%;
            }
            .about-image img {
                margin-top: 30px;
            }

            .contact-grid {
                flex-direction: column;
                align-items: center;
            }
            .contact-info, .quotes-form-container {
                width: 100%;
                max-width: 600px;
            }
            .contact-info {
                text-align: center;
            }
            .contact-info h3 {
                text-align: center;
            }
            .contact-item {
                justify-content: center;
            }

            .footer .container {
                flex-direction: column;
                align-items: center;
            }
            .footer-col {
                width: 90%;
                margin: 20px 0;
                text-align: center;
            }
            .footer-col h4::before {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-col .social-links {
                display: flex;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 2.2em;
            }
            section {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2.5em;
            }
            .hero p {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .header .container {
                flex-wrap: wrap;
                justify-content: center;
            }
            .logo {
                margin-bottom: 10px;
            }
            .nav-toggle {
                order: 1; /* Place toggle button below logo for better layout */
                width: 100%;
                text-align: center;
                padding-top: 10px;
            }
            .nav ul.active {
                top: 130px; /* Adjust for taller header */
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2em;
            }
            .hero p {
                font-size: 0.9em;
            }
            .service-item {
                padding: 20px;
            }
            .reason-item {
                flex-direction: column;
                text-align: center;
            }
            .reason-item i {
                margin-bottom: 15px;
            }
        }
    