
        /* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #4a4e69; /* Muted Indigo */
    --secondary-color: #9a8c98; /* Dusty Rose */
    --accent-color: #c9ada7; /* Blush */
    --light-bg: #f2e9e4;
    --white: #ffffff;
    --text-dark: #22223b;
    --text-light: #6d6875;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        /* --- HEADER & NAV --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 100%;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .nav-links a:hover { color: var(--secondary-color); }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
            margin-top: 60px; /* Offset fixed header */
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        /* --- SECTIONS GENERAL --- */
        section {
            padding: 80px 5%;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- ABOUT US --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .key-points {
            margin-top: 20px;
        }

        .key-point-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .key-point-item i {
            color: var(--secondary-color);
        }

        /* --- SERVICES --- */
        .services-section {
            background-color: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h4 {
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .service-cta-container {
            text-align: center;
            margin-top: 40px;
        }

        /* --- WHY CHOOSE US --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-item i {
            background-color: rgba(230, 126, 34, 0.1);
            color: var(--secondary-color);
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* --- HOME WARRANTY --- */
        .warranty-section {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            border-radius: var(--border-radius);
        }

        .warranty-section h2 { color: var(--white); }
        .warranty-section p { color: #ddd; margin-bottom: 30px; }

        /* --- FORMS (General) --- */
        .form-container {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }

        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
        }

        /* --- TESTIMONIALS --- */
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-item {
            display: none; /* JS will show active one */
            padding: 20px;
            animation: fadeEffect 1s;
        }

        .testimonial-item.active { display: block; }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--secondary-color);
        }

        @keyframes fadeEffect {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
            margin-bottom: 50px;
        }

        .newsletter-section {
            background-color: #f8f9fa;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 5% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--secondary-color); }

        .social-icons a {
            color: var(--white);
            font-size: 1.2rem;
            margin-right: 15px;
            transition: var(--transition);
        }

        .social-icons a:hover { color: var(--secondary-color); }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }

        .legal-text {
            font-size: 0.85rem;
            color: #999;
            margin-top: 20px;
            text-align: justify;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                display: none;
            }

            .nav-links.active { display: flex; }

            .hero-content h1 { font-size: 2rem; }
            
            .about-grid { grid-template-columns: 1fr; }

            .hero-buttons { flex-direction: column; }
        }
        /* Wrapper for legal sections */
.legal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Individual legal blocks */
.legal-text {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Section titles */
.legal-text strong {
    display: block;
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* Subheadings */
.legal-text h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #333333;
}

/* Paragraph text */
.legal-text p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #555555;
}

/* Email links */
.legal-text a {
    color: #0073aa;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive: stack columns on tablets & mobile */
@media (max-width: 900px) {
    .legal-container {
        grid-template-columns: 1fr;
    }
}

    