
        #preloader{animation:hidePreloader 0.5s ease 2s forwards}@keyframes hidePreloader{to{opacity:0;visibility:hidden;pointer-events:none}}

        /* === PROFESSIONAL CATEGORY PAGE STYLES === */

        /* Intro Section */
        .cat-intro {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }
        .cat-intro h2 {
            color: #3D3530;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .cat-intro h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #C4B590, #9B8A5E);
            margin: 0.8rem auto 0;
            border-radius: 2px;
        }
        .cat-intro p {
            color: #666;
            line-height: 1.85;
            font-size: 1.05rem;
            max-width: 750px;
            margin: 0 auto;
        }

        /* Procedures Grid */
        .cat-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        /* Procedure Card */
        .cat-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(61, 53, 48,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f0ebe0;
            position: relative;
        }
        .cat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(155, 138, 94,0.15);
        }
        .cat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #C4B590, #9B8A5E);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .cat-card:hover::before { opacity: 1; }

        .cat-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.8rem 1.8rem 0;
        }
        .cat-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, #F7F3EA, #EDE3C8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9B8A5E;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .cat-card-header h3 {
            margin: 0;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: #3D3530;
        }
        .cat-card-header h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }
        .cat-card-header h3 a:hover { color: #9B8A5E; }

        .cat-card-body {
            padding: 1rem 1.8rem 1.5rem;
        }
        .cat-card-body p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        /* Before/After Slider */
        .cat-ba-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            cursor: ew-resize;
            user-select: none;
            box-shadow: 0 3px 15px rgba(155, 138, 94,0.12);
            margin-bottom: 1.2rem;
        }
        .cat-ba-slider img {
            display: block;
            width: 100%;
            height: auto;
        }
        .cat-ba-after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            clip-path: inset(0 50% 0 0);
        }
        .cat-ba-after img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cat-ba-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background: #C4B590;
            transform: translateX(-50%);
            z-index: 10;
            cursor: ew-resize;
        }
        .cat-ba-handle-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #C4B590, #D1C6A8);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cat-ba-label {
            position: absolute;
            bottom: 8px;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 5;
            color: #fff;
        }
        .cat-ba-label-before {
            left: 8px;
            background: rgba(61, 53, 48,0.8);
        }
        .cat-ba-label-after {
            right: 8px;
            background: rgba(155, 138, 94,0.8);
        }

        /* Learn More Link */
        .cat-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #9B8A5E;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s, gap 0.3s;
        }
        .cat-learn-more:hover {
            color: #C4B590;
            gap: 0.8rem;
        }
        .cat-learn-more i { font-size: 0.8rem; }

        /* CTA Section */
        .cat-cta {
            max-width: 800px;
            margin: 2rem auto 3rem;
            padding: 0 2rem;
        }
        .cat-cta-inner {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem 2.5rem;
            background: linear-gradient(135deg, #FEFCF9, #F7F3EA);
            border: 1px solid rgba(196, 181, 144,0.3);
            border-left: 4px solid #C4B590;
            border-radius: 12px;
        }
        .cat-cta-text { flex: 1; }
        .cat-cta-text h2 {
            color: #3D3530;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 0.4rem;
        }
        .cat-cta-text p {
            color: #9B8A5E;
            font-size: 0.95rem;
            margin: 0;
        }
        .cat-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #C4B590, #9B8A5E);
            color: #fff;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            white-space: nowrap;
            flex-shrink: 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cat-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 181, 144,0.35);
            color: #fff;
        }

        /* Why Choose Us */
        .cat-features {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 2rem 3rem;
            border-top: 1px solid #f0ebe0;
        }
        .cat-features h2 {
            text-align: center;
            color: #3D3530;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }
        .cat-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .cat-feature-card {
            text-align: center;
            padding: 1.8rem 1.2rem;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #f0ebe0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cat-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(155, 138, 94,0.1);
        }
        .cat-feature-card i {
            font-size: 1.8rem;
            color: #C4B590;
            margin-bottom: 0.8rem;
            display: block;
        }
        .cat-feature-card h4 {
            color: #3D3530;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .cat-feature-card p {
            color: #888;
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        }
        @media (max-width: 768px) {
            .cat-grid { grid-template-columns: 1fr; padding: 1.5rem; }
            .cat-intro { padding: 2rem 1.5rem 0.5rem; }
            .cat-intro h2 { font-size: 1.6rem; }
            .cat-cta-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
            .cat-features-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .cat-card-header { padding: 1.2rem 1.2rem 0; }
            .cat-card-body { padding: 0.8rem 1.2rem 1.2rem; }
            .cat-features-grid { grid-template-columns: 1fr; }
        }

