
        /* --- CSS Variables & Reset --- */
        :root {
            /* Theme Colors */
            --primary-dark: #0F172A;       /* Deep Navy */
            --primary-blue: #0056b3;       
            --btn-blue: #007bff;           
            --btn-blue-hover: #0056b3;
            
            --primary-orange: #FF6600;     
            --btn-orange: #FF6600;         
            --btn-orange-hover: #e65c00;
            
            --accent-orange: #ff9f43;      
            
            /* Layout Colors */
            --bg-light: #F0F4F8;           
            --white: #ffffff;
            --text-grey: #64748b;
            --border-color: #cbd5e1;
            
            /* Shadows & Radius */
            --shadow-sm: 0 2px 4px rgba(0, 86, 179, 0.05);
            --shadow-md: 0 4px 12px rgba(0, 86, 179, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 86, 179, 0.15);
            --radius-lg: 20px;
            --radius-pill: 50px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--primary-dark);
            line-height: 1.6;
            padding-bottom: 0;
        }

        /* --- Utility Classes --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center { text-align: center; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .gap-10 { gap: 10px; }
        .gap-20 { gap: 20px; }
        .section-padding { padding: 70px 0; }

        /* --- Header --- */
        header {
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .brand-logo {
            font-weight: 700;
            font-size: 15px;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .brand-logo span { color: var(--primary-blue); }

        /* --- HERO SECTION STYLES --- */
        .hero-section {
            background-color: var(--white);
            padding: 35px 20px 60px 20px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: #e0f2fe;
            color: #0f172a;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .dot-icon {
            width: 8px;
            height: 8px;
            background-color: #2563eb;
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
            70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        /* The Gradient Text Class */
        .gradient-text {
            background: linear-gradient(90deg, #2563EB, #16A34A); /* Blue to Green Gradient */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .hero-subtitle {
            color: var(--text-grey);
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto 50px auto;
            line-height: 1.7;
        }

        /* --- Search Section --- */
        .search-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin-bottom: 25px;
        }

        .search-wrapper svg {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--primary-blue);
        }

        .search-input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            font-size: 1.05rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius-pill);
            outline: none;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            background: #f8fafc;
        }

        .search-input:focus {
            border-color: var(--primary-blue);
            background: var(--white);
            box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.15);
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            width: 100%;
        }

        .filter-btn {
            background: var(--white);
            border: 2px solid #e2e8f0;
            padding: 10px 28px;
            border-radius: var(--radius-pill);
            color: var(--primary-dark);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background-color: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        /* --- Main Content Area --- */
        main {
            background-color: var(--bg-light);
            padding-bottom: 60px;
        }

        /* --- Section Titles --- */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .section-title span {
            background: linear-gradient(90deg, #2563EB, #16A34A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .section-subtitle {
            color: var(--text-grey);
            max-width: 700px;
            margin: 0 auto 40px auto;
            text-align: center;
            font-size: 1.05rem;
        }

        /* --- Services Grid --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 70px;
        }

        /* --- Service Card --- */
        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 25px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-blue);
        }

        .card-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-bottom-left-radius: 20px;
            opacity: 0.9;
            transition: var(--transition);
            border: 2px solid var(--white);
        }

        .service-card:hover .card-img {
            transform: scale(1.05);
        }

        .card-header {
            margin-bottom: 12px;
            padding-right: 80px;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            color: var(--text-grey);
            margin-bottom: 8px;
        }

        .star-icon {
            color: var(--accent-orange);
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .price {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .price span {
            font-weight: 400;
            color: var(--text-grey);
            font-size: 0.9rem;
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .badge {
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-blue { background-color: #e0f2fe; color: #0284c7; border: 1px solid #bae6fd; }
        .badge-orange { background-color: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
        .badge-red { background-color: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }

        .description {
            font-size: 0.9rem;
            color: var(--text-grey);
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            flex: 1;
            padding: 12px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-book { background-color: var(--btn-blue); color: var(--white); }
        .btn-book:hover { background-color: var(--btn-blue-hover); transform: translateY(-2px); }

        .btn-call { background-color: var(--btn-orange); color: var(--white); }
        .btn-call:hover { background-color: var(--btn-orange-hover); transform: translateY(-2px); }

        /* --- Why Choose Us --- */
        .why-us-section {
            background-color: var(--white);
            border-top: 1px solid #e2e8f0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-box {
            text-align: center;
            padding: 40px 25px;
            border-radius: var(--radius-lg);
            background: #fff;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }

        .feature-box:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-blue);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: #e0f2fe;
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px auto;
            font-size: 28px;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }

        .feature-text {
            color: var(--text-grey);
            font-size: 0.95rem;
        }

  /* --- Common Problems --- */
        .problems-section {
            background-color: var(--bg-light);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .problem-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            border-left: 5px solid var(--primary-orange);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .problem-card:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .problem-icon {
            color: var(--primary-orange);
            flex-shrink: 0;
            background: #ffedd5;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .problem-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }

        .problem-content p {
            font-size: 0.9rem;
            color: var(--text-grey);
            margin: 0;
        }
        /* --- Testimonials --- */
        .testimonials-section {
            background-color: var(--white);
            background-image: radial-gradient(#e0f2fe 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px 30px;
            border-radius: var(--radius-lg);
            position: relative;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: var(--primary-orange);
        }

        .quote-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 50px;
            color: rgba(255, 102, 0, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .review-text {
            font-style: italic;
            color: #475569;
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* 5 Star Rating Styles */
        .review-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }

        .star-filled {
            width: 20px;
            height: 20px;
            fill: var(--accent-orange);
            color: var(--accent-orange);
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .reviewer-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-blue);
        }

        .reviewer-details h5 {
            font-size: 1rem;
            margin-bottom: 2px;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .reviewer-details span {
            font-size: 0.85rem;
            color: var(--primary-blue);
            font-weight: 500;
        }

        /* --- FAQs --- */
        .faq-section {
            background-color: var(--bg-light);
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e2e8f0;
        }

        .faq-question {
            padding: 20px 25px;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Poppins', sans-serif;
        }

        .faq-question:hover {
            background-color: #f8fafc;
            color: var(--primary-blue);
        }

        .faq-toggle-icon {
            transition: transform 0.3s ease;
            color: var(--primary-orange);
        }

        .faq-item.active .faq-toggle-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 25px;
            color: var(--text-grey);
            line-height: 1.7;
            background-color: #fafbfc;
        }

        .faq-item.active .faq-answer {
            max-height: 250px; 
            padding-bottom: 20px;
        }

        /* --- SEO Content Section --- */
        .seo-content-section {
            background-color: var(--white);
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .seo-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .seo-title {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.3;
        }

        .seo-text {
            color: var(--text-grey);
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }

        .seo-text strong {
            color: var(--primary-blue);
        }

        .seo-subheading {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin: 30px 0 15px 0;
            font-weight: 700;
        }

        /* --- Disclaimer Section --- */
        .disclaimer-section {
            background-color: #f1f5f9;
            padding: 50px 20px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .disclaimer-box {
            max-width: 900px;
            margin: 0 auto;
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.8;
            text-align: justify;
        }

        .disclaimer-box strong {
            color: var(--primary-blue);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
        }

        footer h3 { color: var(--white); margin-bottom: 10px; }
        footer p { opacity: 0.7; font-size: 0.9rem; }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .services-grid { grid-template-columns: 1fr; }
            .filter-container { overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
            .filter-btn { flex-shrink: 0; }
            .card-actions { flex-direction: column; }
            .search-wrapper { max-width: 100%; }
        }
    /* --- 🌟 MODERN CTA SECTION --- */
        .cta-section {
            background: linear-gradient(135deg, #004d40 0%, #00695c 100%); /* Dark Teal Gradient */
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
            text-align: center;
            color: var(--white);
        }

        /* Subtle Appliance Icons in Background */
        .cta-bg-icons {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .bg-icon {
            position: absolute;
            opacity: 0.05;
            color: var(--white);
            width: 150px;
            height: 150px;
        }

        .bg-icon-1 { top: 10%; left: 5%; }
        .bg-icon-2 { bottom: 20%; right: 10%; }
        .bg-icon-3 { top: 20%; right: 20%; width: 100px; height: 100px; }

        /* Floating Shapes */
        .cta-floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: rgba(29, 233, 182, 0.2);
            top: -50px;
            left: -50px;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: rgba(0, 150, 136, 0.2);
            bottom: -100px;
            right: -100px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-heading {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .cta-subheading {
            font-size: 1.2rem;
            color: #b2dfdb; /* Light Teal/Grey */
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-cta-call {
            background: linear-gradient(90deg, #1de9b6, #00acc1); /* Teal / Aqua Gradient */
            color: var(--white);
            padding: 18px 35px; /* Large pill */
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 172, 193, 0.4);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-cta-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 172, 193, 0.6);
        }

        .btn-cta-secondary {
            background: var(--white);
            color: #004d40; /* Dark Teal text */
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-cta-secondary:hover {
            background: #f0fdf4;
            transform: translateY(-3px);
        }

