:root {
    --primary-color: #386641; /* Earthy green */
    --secondary-color: #a7c957; /* Soft lime */
    --accent-color: #bc4749; /* Muted red */
    --light-color: #f2e8cf;
    --dark-color: #2f3e2f;
    --text-color: #4a4a4a;
    --border-color: #d8e2c9;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --font-family: 'Lato', sans-serif;
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            color: var(--dark-color);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.8rem; font-weight: 700; }
        h2 { font-size: 2.2rem; font-weight: 600; text-align: center; margin-bottom: 2.5rem; }
        h3 { font-size: 1.5rem; font-weight: 600; }
        p { margin-bottom: 1rem; }
        a { text-decoration: none; color: var(--primary-color); }
        ul { list-style: none; }

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: #fff;
        }
        .btn-primary:hover {
            background-color: #229954;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }

        /* --- Header --- */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        nav ul {
            display: flex;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: var(--dark-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        nav ul li a:hover {
            color: var(--secondary-color);
        }

        .header-cta .btn {
            margin-left: 15px;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        .top-bar {
            background-color: var(--primary-color);
            color: #fff;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        .top-bar-content {
            display: flex;
            justify-content: space-between;
        }
        .top-bar a { color: #fff; margin-left: 15px; }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(56, 102, 65, 0.8), rgba(56, 102, 65, 0.8)), url('../images/hero.webp') no-repeat center center/cover;
            color: #fff;
            padding: 150px 0 100px;
            text-align: center;
        }
        .hero h1 {
            color: #fff;
            font-size: 3.2rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem auto;
            color: #e0e0e0;
        }
        .hero-points {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .hero-buttons .btn {
            margin: 0 10px;
        }
        
        /* --- About Section --- */
        .about { background-color: var(--light-color); }
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .about-text { flex: 1; }
        .about-image { flex: 1; }
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .about-highlights {
            margin-top: 1.5rem;
            list-style: none;
        }
        .about-highlights li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .about-highlights li i {
            color: var(--accent-color);
            margin-right: 10px;
        }

        /* --- Services Section --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }
        .service-category {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .service-category h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        .service-category h3 i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        .service-category ul li {
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .service-category ul li:last-child {
            border-bottom: none;
        }

        /* --- Why Choose Us --- */
        .why-choose { background-color: var(--light-color); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .feature-card i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .feature-card h3 {
            font-size: 1.2rem;
        }
        
        /* --- Home Warranty Section --- */
        .warranty-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .warranty-coverage {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .warranty-coverage div {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .warranty-coverage div i {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* --- Testimonials Section --- */
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .testimonial {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }
        .testimonial p {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .testimonial h4 {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* --- Contact & Quote Section --- */
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: var(--font-family);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-message {
            display: none;
            padding: 15px;
            background-color: #d4edda;
            color: #155724;
            border-radius: 5px;
            text-align: center;
            margin-top: 20px;
        }

        /* --- Newsletter Popup --- */
        .popup-trigger {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--secondary-color);
            color: #fff;
            padding: 15px 20px;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        
        /* --- Footer --- */
        .footer {
            background-color: var(--dark-color);
            color: #aaa;
            padding: 60px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-column p, .footer-column li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #aaa;
            transition: color 0.3s ease;
        }
        .footer-column a:hover {
            color: var(--secondary-color);
        }
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: #fff;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .social-links a:hover {
            background-color: var(--secondary-color);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }

        /* --- Modal --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
        }
        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            color: var(--text-color);
        }
        .close:hover { color: var(--primary-color); }
        
        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            .hero h1 { font-size: 2.8rem; }
            .about-content { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: var(--shadow); }
            nav.active { display: block; }
            nav ul { flex-direction: column; padding: 20px; }
            nav ul li { margin: 10px 0; }
            .header-cta { display: none; }
            
            .hero { padding: 120px 0 80px; }
            .hero h1 { font-size: 2.2rem; }
            .hero-points { flex-direction: column; gap: 15px; }
            .hero-buttons .btn { display: block; width: 80%; margin: 10px auto; }

            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
        }

   