﻿    * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                background: #f5f5f5;
                color: #333;
            }

            /* ===== HERO BANNER ===== */
            .hero-banner {
                position: relative;
                height: 280px;
                background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    url(/images/carpet-cleaning-main.jpg) center/cover;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-content {
                text-align: center;
                color: white;
            }

            .hero-content h1 {
                font-size: 3rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 2px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }

            .breadcrumb {
                position: absolute;
                /* top: 20px; */
                right: 40px;
                color: white;
                font-size: 0.85rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                bottom: 20px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .breadcrumb a {
                color: white;
                text-decoration: none;
                opacity: 0.8;
                transition: opacity 0.3s;
            }

            .breadcrumb a:hover {
                opacity: 1;
            }

            .breadcrumb span {
                margin: 0 8px;
                opacity: 0.6;
            }

            /* ===== CONTAINER ===== */
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 40px 20px;
            }

            /* ===== OFFERS GRID ===== */
            .offers-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            @media (max-width: 768px) {
                .offers-grid {
                    grid-template-columns: 1fr;
                }

                .hero-content h1 {
                    font-size: 2rem;
                }
            }

            /* ===== OFFER CARD ===== */
            .offer-card {
                background: white;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
                transition: transform 0.3s, box-shadow 0.3s;
            }

            .offer-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }

            /* ===== OFFER HEADER (Teal with image) ===== */
            .offer-header {
                /* background: #0a9aa8; */
                /* padding: 30px; */
                /* display: flex; */
                align-items: center;
                gap: 25px;
                min-height: 180px;
            }

            .offer-image-wrapper {
                flex-shrink: 0;
                /* width: 120px; */
                /* height: 120px; */
                /* border-radius: 50%; */
                /* border: 4px solid #f4c430; */
                overflow: hidden;
                /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
            }

            .offer-image-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .offer-discount {
                color: white;
            }

            .offer-discount .discount-label {
                font-size: 0.9rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 5px;
            }

            .offer-discount .discount-percent {
                font-size: 1.8rem;
                font-weight: 800;
                color: #e74c3c;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            }

            .offer-discount h3 {
                font-size: 1.3rem;
                font-weight: 700;
                text-transform: uppercase;
                margin-top: 5px;
                letter-spacing: 0.5px;
            }

            .offer-discount p {
                font-size: 0.95rem;
                opacity: 0.9;
                margin-top: 8px;
                line-height: 1.5;
            }

            /* ===== OFFER BODY ===== */
            .offer-body {
                padding: 25px 30px;
            }

            .offer-body h4 {
                color: #2980b9;
                font-size: 1.1rem;
                font-weight: 700;
                text-transform: uppercase;
                margin-bottom: 10px;
                letter-spacing: 0.5px;
            }

            .offer-body .subtitle {
                color: #666;
                font-size: 0.85rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 15px;
            }

            /* ===== TAGS ===== */
            .tags {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 20px;
            }

            .tag {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: #f8f9fa;
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 0.8rem;
                color: #333;
                font-weight: 500;
            }

            /* SVG Tag Icon */
            .tag-icon {
                width: 12px;
                height: 12px;
                fill: #333;
            }

            /* ===== READ MORE BUTTON ===== */
            .read-more {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: #009ab5;
                color: #fff;
                text-decoration: none;
                padding: 10px 20px;
                border-radius: 4px;
                font-size: 0.9rem;
                font-weight: 600;
                transition: background 0.3s, transform 0.2s;
                border: none;
                cursor: pointer;
            }

            .read-more:hover {
                background: #fdc600;
                transform: translateX(3px);
            }

            /* SVG Arrow Icon */
            .arrow-icon {
                width: 14px;
                height: 14px;
                fill: currentColor;
            }

            /* ===== FLOATING CTA ===== */
            .floating-cta {
                position: fixed;
                bottom: 30px;
                right: 30px;
                background: linear-gradient(135deg, #f4c430, #e6b800);
                color: #2c3e50;
                padding: 15px 25px;
                border-radius: 50px;
                font-weight: 700;
                font-size: 0.95rem;
                text-decoration: none;
                box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
                transition: transform 0.3s, box-shadow 0.3s;
                z-index: 100;
            }

            .floating-cta:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(244, 196, 48, 0.5);
            }

            /* ===== FOOTER SPACING ===== */
            .footer-space {
                height: 80px;
            }