:root {
            --primary-blue: #1e3a8a;
            --primary-pink: #e91e8c;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-blue);
            display: flex;
            justify-content: center;
        }

        .top-bar button {
            border: none;
            padding: 4px 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.1s;
        }

        .top-bar .domestic {
            background: var(--primary-pink);
            color: white;
        }

        .top-bar .commercial {
            background: var(--primary-blue);
            color: white;
        }

        /* Navbar */
        .navbar {
            background: var(--primary-blue);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
        }

        .btn-book {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
        }

        .btn-call {
            color: white;
            border: none;
            background: transparent;
            margin-right: 15px;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .breadcrumb {
            margin: 0;
            background: transparent;
        }

        .breadcrumb-item a {
            color: #6c757d;
            text-decoration: none;
        }

        /* Hero Section */
        .hero-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .hero-title {
            color: #1a1a1a;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .btn-check-prices {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .trustpilot-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
        }

        .trustpilot-stars {
            color: #00b67a;
            font-size: 1.2rem;
        }

        .hero-images {
            position: relative;
        }

        .hero-images img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .img-microwave {
            width: 48%;
            position: absolute;
            right: 0;
            top: 0;
        }

        .img-washing {
            width: 75%;
            margin-top: 50px;
        }

        /* Service Categories */
        .service-categories {
            background: white;
            padding: 40px 0;
            border-top: 3px solid #e9ecef;
        }

        .service-item {
            text-align: center;
            padding: 20px 10px;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }

        .service-item:hover {
            background: #f8f9fa;
        }

        .service-item.active {
            border-bottom: 3px solid var(--primary-blue);
        }

        .service-item i {
            font-size: 2rem;
            color: #6c757d;
            margin-bottom: 10px;
        }

        .service-item.active i {
            color: var(--primary-blue);
        }

        .service-item span {
            display: block;
            color: #6c757d;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .service-item.active span {
            color: var(--primary-blue);
        }













/* Services Section */
        .services-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
        }

        .services-subtitle {
            color: #6c757d;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .service-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .service-item i {
            font-size: 1.3rem;
            color: #6c757d;
            width: 24px;
        }

        .service-item span {
            color: #495057;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-badge {
            position: absolute;
            top: -8px;
            right: 10px;
            background: var(--primary-pink);
            color: white;
            font-size: 0.65rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .view-all {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 10px;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        /* Brands Section */
        .brands-section {
            background: white;
            padding: 60px 0;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }

        .brand-card {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .brand-card img {
            max-width: 100%;
            max-height: 40px;
            object-fit: contain;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-blue);
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-book-now {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
        }

        .btn-request-quote {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
        }

        .btn-book-now:hover,
        .btn-request-quote:hover {
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: #f8f9fa;
            padding: 50px 0 30px;
        }

        .footer h6 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #1a1a1a;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #6c757d;
            text-decoration: none;
            font-size: 0.85rem;
        }

        .footer ul li a:hover {
            color: var(--primary-blue);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }

        .newsletter-form button {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }






.blog-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.card-title a {
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
}




