@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
:root {
            --primary-blue: #1e3a8a;
            --primary-pink: #e91e8c;
        }

        body {
            font-family: "Karla", sans-serif;
            font-weight: 400;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-blue);
            display: flex;
            justify-content: center;
        }

        .top-bar button {
            border: none;
            padding: 12px 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .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));
            }
        }



.floating-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 28px;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .call-btn {
            background-color: #8B0000;
        }
        .whatsapp-btn {
            background-color: #25D366;
        }
        .hero-section {
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            color: white;
            padding: 120px 0 80px;
        }
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }
        .navbar {
            background-color: #8B0000 !important;
        }
        .section-title {
            color: #8B0000;
            margin-bottom: 30px;
        }
        .bg-dark-red {
            background-color: #8B0000 !important;
        }








 .brands-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .h-100 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            color: white;
            overflow: hidden;
        }
        
        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .h-100 .card-body {
            padding: 1.5rem;
        }
        
        .h-100 .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }
        
        .h-100 .card-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            color: #718096;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }





