
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-navy: #1a2533;
            --accent-gold: #c5a059;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--accent-gold);
            color: #fff;
            border: 2px solid var(--accent-gold);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }

        .btn-outline {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-outline:hover {
            background-color: #fff;
            color: var(--primary-navy);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        header {
            background-color: var(--bg-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-navy);
            font-family: 'Playfair Display', serif;
        }

        .logo span { color: var(--accent-gold); }

        nav ul {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        nav ul li a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary-navy);
        }

        nav ul li a:hover { color: var(--accent-gold); }

        .nav-cta {
            background-color: var(--accent-gold);
            color: white !important;
            padding: 10px 20px;
            border-radius: 4px;
        }

        .nav-cta:hover { background-color: #b08d4d; color: white !important; }

        /* --- HERO SECTION --- */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(26, 37, 51, 0.7), rgba(26, 37, 51, 0.6)), 
                        url('../img/hero.avif');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ddd;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* --- ABOUT SECTION --- */
        .about { background-color: var(--bg-white); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p { margin-bottom: 20px; color: var(--text-light); }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-item i { color: var(--accent-gold); font-size: 1.2rem; }
        .feature-item span { font-weight: 500; color: var(--primary-navy); }

        /* --- SERVICES SECTION --- */
        .services { background-color: var(--bg-light); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
        .service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }
        
        .learn-more-btn {
            color: var(--primary-navy);
            font-weight: 600;
            font-size: 0.9rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 2px;
        }

        /* --- WHY CHOOSE US --- */
        .why-us { background-color: var(--bg-white); }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .benefit-item {
            padding: 20px;
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background-color: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-navy);
            font-size: 1.5rem;
        }

        .benefit-item h4 { font-size: 1rem; margin-bottom: 10px; }

        /* --- HOME WARRANTY --- */
        .warranty {
            background: linear-gradient(rgba(26, 37, 51, 0.9), rgba(26, 37, 51, 0.9)), 
                        url('../img/warranty.avif');
            background-size: cover;
            background-attachment: fixed;
            color: #fff;
            text-align: center;
        }

        .warranty h2 { color: var(--accent-gold); margin-bottom: 20px; }
        .warranty p { max-width: 700px; margin: 0 auto 30px; color: #ddd; }

        /* --- QUOTE FORM --- */
        .quote-section { background-color: var(--bg-light); }

        .quote-form-container {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group { margin-bottom: 20px; }
        .form-group.full-width { grid-column: 1 / -1; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-navy);
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }

        .form-group textarea { height: 120px; resize: vertical; }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-navy);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover { background-color: #2c3e50; }

        #form-message {
            margin-top: 20px;
            padding: 15px;
            background-color: #d4edda;
            color: #155724;
            border-radius: 4px;
            text-align: center;
            display: none;
        }

        /* --- TESTIMONIALS --- */
        .testimonials { background-color: var(--bg-white); }

        .testimonial-carousel {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding-bottom: 20px;
            scroll-snap-type: x mandatory;
        }

        .testimonial-card {
            min-width: 300px;
            background: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            scroll-snap-align: start;
            border-left: 4px solid var(--accent-gold);
        }

        .stars { color: var(--accent-gold); margin-bottom: 15px; }
        .review-text { font-style: italic; margin-bottom: 15px; color: var(--text-light); }
        .customer-name { font-weight: 700; color: var(--primary-navy); }

        /* --- CONTACT SECTION --- */
        .contact { background-color: var(--bg-light); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-right: 15px;
            margin-top: 5px;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 8px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-navy);
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 { color: var(--accent-gold); margin-bottom: 20px; font-size: 1.2rem; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a:hover { color: var(--accent-gold); }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            line-height: 35px;
            text-align: center;
            border-radius: 50%;
            margin-right: 10px;
            color: #fff;
        }
        .social-icons a:hover { background: var(--accent-gold); }

        .newsletter-form { display: flex; gap: 10px; }
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px;
        }
        .newsletter-form button {
            padding: 10px 15px;
            background: var(--accent-gold);
            border: none;
            color: #fff;
            border-radius: 4px;
            cursor: pointer;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        .footer-links a { margin: 0 10px; cursor: pointer; text-decoration: underline; }

        /* --- POPUP MODALS --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .modal h3 { margin-bottom: 20px; color: var(--primary-navy); }
        .modal p { margin-bottom: 15px; color: var(--text-light); font-size: 0.95rem; }
        
        .modal-btn {
            background: var(--accent-gold);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; height: auto; padding: 15px 0; }
            nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
            .hero-content h1 { font-size: 2.5rem; }
            .about-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
            .hero-buttons { flex-direction: column; }
        }

      /* ===========================
   General Modal Styles
=========================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Above all other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
    transition: opacity 0.3s ease;
    font-family: Arial, sans-serif;
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    margin: 5% auto; /* 5% from top and centered */
    padding: 30px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.4s ease;
}

/* Slide down animation */
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Close button */
.close-btn,
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover,
.close-modal:hover {
    color: #000;
}

/* ===========================
   Newsletter Form Styles
=========================== */
#newsletterForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#newsletterForm input[type="text"],
#newsletterForm input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#newsletterForm input:focus {
    border-color: #c5a059;
    outline: none;
}

#newsletterForm label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

#newsletterForm input[type="checkbox"] {
    margin-right: 10px;
}

#newsletterForm button {
    background-color: #c5a059;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletterForm button:hover {
    background-color: #0056b3;
}

/* Confirmation Message */
.confirmation {
    display: none;
    text-align: center;
}

.confirmation h2 {
    color: #28a745;
    margin-bottom: 10px;
}

/* ===========================
   Privacy, Terms, Warranty Buttons
=========================== */
.modal-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #c5a059;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-btn:hover {
    background-color: #0056b3;
}

/* ===========================
   Headings & Paragraphs
=========================== */
.modal-content h2, 
.modal-content h3 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.modal-content p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

/* ===========================
   List Styling in Warranty
=========================== */
.modal-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* ===========================
   Responsive Styles
=========================== */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 20px 15px;
    }
    #newsletterForm input[type="text"],
    #newsletterForm input[type="email"] {
        font-size: 14px;
    }
    #newsletterForm button,
    .modal-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}