 
        /* ============================================
   SERVICES SHOWCASE SECTION
   ============================================ */
        .services-showcase-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .services-bg-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(194, 194, 181, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* ============================================
   SECTION HEADER
   ============================================ */
        .services-header-wrapper {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-tag-label {
            display: inline-block;
            background: linear-gradient(135deg, #695a53, #f0efee);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .services-main-title {
            font-size: 40px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .title-accent {
            background: linear-gradient(135deg, #695a53, #f0efee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-intro-description {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
   SERVICES GRID
   ============================================ */
        .services-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* ============================================
   SERVICE CARD
   ============================================ */
        .service-card-item {
            position: relative;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .service-card-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-card-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-card-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .service-card-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .service-card-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .service-card-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card-inner {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 35px 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #695a53, #f0efee);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card-item:hover .service-card-inner {
            border-color: #695a53;
            box-shadow: 0 15px 40px rgba(181, 187, 184, 0.015);
            transform: translateY(-8px);
        }

        .service-card-item:hover .service-card-inner::before {
            transform: scaleX(1);
        }

        /* Icon Wrapper */
        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #695a53, #f0efee);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #ffffff;
            font-size: 32px;
            box-shadow: 0 8px 20px rgba(194, 194, 181, 0.25);
            transition: all 0.4s ease;
            position: relative;
        }

        .service-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .service-card-item:hover .service-icon-wrapper {
            transform: rotateY(360deg);
            box-shadow: 0 12px 30px rgba(202, 206, 204, 0.25);
        }

        .service-card-item:hover .service-icon-wrapper::after {
            transform: scale(1);
        }

        /* Card Title */
        .service-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .service-card-item:hover .service-card-title {
            color: #695a53;
        }

        /* Card Description */
        .service-card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }

        /* Card Footer */
        .service-card-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-top: auto;
        }

        .service-number {
            font-size: 48px;
            font-weight: 800;
            color: #f5f5f5;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .service-card-item:hover .service-number {
            color: rgba(191, 201, 193, 0.15);
            transform: scale(1.1);
        }

        /* ============================================
   RESPONSIVE DESIGN
   ============================================ */
        @media (max-width: 992px) {
            .services-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .services-main-title {
                font-size: 36px;
            }

            .services-showcase-section {
                padding: 60px 0;
            }

            .services-header-wrapper {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 768px) {
            .services-grid-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-main-title {
                font-size: 32px;
            }

            .services-intro-description {
                font-size: 15px;
            }

            .service-card-inner {
                padding: 30px 20px;
            }

            .service-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .service-card-title {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .services-showcase-section {
                padding: 50px 0;
            }

            .services-main-title {
                font-size: 28px;
            }

            .service-number {
                font-size: 40px;
            }
        }

        /* ============================================
   ALTERNATIVE STYLES (Optional Variations)
   ============================================ */

        /* Hover Effect - Card Flip Style */
        .service-card-inner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(180deg, transparent, rgba(194, 194, 181, 0.15));
            transition: height 0.4s ease;
            z-index: -1;
        }

        .service-card-item:hover .service-card-inner::after {
            height: 100%;
        }

        /* Accessibility Focus States */
        .service-card-inner:focus-within {
            outline: 3px solid #695a53;
            outline-offset: 4px;
        }
    