/* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.9), rgba(92, 0, 0, 0.85)),
                        url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
        }

        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* Filters Section */
        .filters-section {
            padding: 40px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
        }

        .filters-container {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .filter-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid var(--border-color);
            background: var(--white);
            color: var(--text-dark);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 14px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-maroon);
            color: var(--accent-gold);
            border-color: var(--primary-maroon);
        }

        .search-filter {
            flex: 1;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 45px 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            font-size: 14px;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-maroon);
            color: var(--accent-gold);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
        }

        /* Services Grid */
        .services-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px var(--shadow);
            border-color: var(--primary-maroon);
        }

        .service-image {
            width: 100%;
            height: 240px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #f9f9f9;
            position: relative;
        }

        .service-image.service-no-image {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #ccc;
        }

        .service-image.service-no-image i {
            font-size: 48px;
        }

        .service-image.service-no-image span {
            font-size: 14px;
            font-weight: 600;
        }

        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-gold);
            color: var(--primary-maroon);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .service-content {
            padding: 30px;
        }

        .service-category {
            color: var(--primary-maroon);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .service-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .service-card h3 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-card h3 a:hover {
            color: var(--primary-maroon);
        }

        .service-description {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 14px;
        }

        .service-features {
            margin-bottom: 20px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 13px;
            color: var(--text-dark);
        }

        .service-feature i {
            color: var(--primary-maroon);
            font-size: 12px;
        }

        .service-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid var(--border-color);
        }

        .service-price {
            display: flex;
            flex-direction: column;
        }

        .service-price-label {
            font-size: 11px;
            color: var(--text-light);
            margin-bottom: 3px;
        }

        .service-price-amount {
            font-size: 24px;
            color: var(--primary-maroon);
            font-weight: 700;
        }

        .service-btn {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .service-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
        }