.e-services-page {
            --main: rgba(0, 11, 109, 1);
            --main-soft: rgba(0, 11, 109, .08);
            --main-light: rgba(0, 11, 109, .14);
            --text: #172033;
            --muted: #6c7280;
            --border: #e8ecf5;
            padding: 60px 0 80px;
            background: radial-gradient(circle at top left, rgba(0, 11, 109, .10), transparent 34%),
            linear-gradient(180deg, #f7f9ff 0%, #fff 55%);
        }

        .e-services-hero {
            position: relative;
            overflow: hidden;
            border-radius: 34px;
            padding: 46px;
            color: #fff;
            background: linear-gradient(135deg, rgba(0, 11, 109, .96), rgba(16, 68, 174, .88));
            box-shadow: 0 24px 60px rgba(0, 11, 109, .18);
        }

        .e-services-kicker {
            display: inline-flex;
            padding: 8px 15px;
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 999px;
            margin-bottom: 18px;
            font-size: 14px;
            background: rgba(255, 255, 255, .12);
        }

        .e-services-hero h1 {
            max-width: 760px;
            margin: 0;
            font-size: clamp(30px, 4vw, 52px);
            line-height: 1.1;
            font-weight: 800;
        }

        .e-services-hero p {
            max-width: 680px;
            margin: 18px 0 0;
            color: rgba(255, 255, 255, .82);
            font-size: 17px;
            line-height: 1.7;
        }

        .e-services-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .e-services-stats div {
            min-width: 150px;
            padding: 16px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            backdrop-filter: blur(12px);
        }

        .e-services-stats strong {
            display: block;
            font-size: 28px;
            line-height: 1;
        }

        .e-services-stats span {
            display: block;
            margin-top: 7px;
            color: rgba(255, 255, 255, .78);
            font-size: 13px;
        }

        .e-service-layout {
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 26px;
            margin-top: 28px;
            align-items: start;
        }

        .e-service-sidebar,
        .e-service-content {
            background: rgba(255, 255, 255, .86);
            border: 1px solid var(--border);
            border-radius: 28px;
            box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
        }

        .e-service-sidebar {
            position: sticky;
            top: 20px;
            padding: 16px;
        }

        .sidebar-title {
            margin: 8px 8px 14px;
            font-weight: 700;
            color: var(--main);
        }

        .category-link {
            width: 100%;
            border: 0;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            border-radius: 16px;
            margin-bottom: 8px;
            background: transparent;
            color: var(--text);
            text-align: left;
            cursor: pointer;
            transition: .25s ease;
        }

        .category-link i {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: var(--main-soft);
            color: var(--main);
        }

        .category-link:hover,
        .category-link.active {
            background: var(--main);
            color: #fff;
            transform: translateX(4px);
        }

        .category-link:hover i,
        .category-link.active i {
            background: rgba(255, 255, 255, .16);
            color: #fff;
        }

        .e-service-content {
            min-height: 630px;
            padding: 26px;
        }

        .service-map,
        .category-panel,
        .detail-panel {
            display: none;
            animation: fadeUp .35s ease both;
        }

        .service-map.active,
        .category-panel.active,
        .detail-panel.active {
            display: block;
        }

        .section-heading {
            margin-bottom: 24px;
        }

        .section-heading span,
        .detail-category {
            display: inline-flex;
            padding: 7px 13px;
            border-radius: 999px;
            background: var(--main-soft);
            color: var(--main);
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-heading h2 {
            margin: 0;
            color: var(--text);
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
        }

        .section-heading p {
            margin: 12px 0 0;
            color: var(--muted);
            line-height: 1.7;
            max-width: 760px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .category-card {
            position: relative;
            min-height: 220px;
            padding: 24px;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: #fff;
            text-align: left;
            cursor: pointer;
            overflow: hidden;
            transition: .28s ease;
        }

        .category-card:before {
            content: "";
            position: absolute;
            inset: auto -40px -65px auto;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--main-soft);
            transition: .28s ease;
        }

        .category-card:hover {
            transform: translateY(-7px);
            border-color: rgba(0, 11, 109, .22);
            box-shadow: 0 18px 36px rgba(0, 11, 109, .10);
        }

        .category-card:hover:before {
            transform: scale(1.25);
            background: var(--main-light);
        }

        .card-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: var(--main);
            color: #fff;
            font-size: 24px;
            margin-bottom: 18px;
        }

        .category-card h3,
        .service-card h3,
        .detail-box h2 {
            margin: 0;
            color: var(--text);
            font-weight: 800;
        }

        .category-card h3 {
            font-size: 19px;
        }

        .category-card p,
        .service-card p,
        .detail-section p {
            color: var(--muted);
            line-height: 1.65;
        }

        .category-card small {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--main);
            font-weight: 700;
            margin-top: 8px;
        }

        .quick-services {
            margin-top: 26px;
            padding: 22px;
            border-radius: 24px;
            background: #f7f9ff;
            border: 1px solid var(--border);
        }

        .quick-services h3 {
            margin: 0 0 14px;
            color: var(--main);
            font-size: 18px;
        }

        .quick-services div {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .quick-services button {
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text);
            padding: 10px 14px;
            border-radius: 999px;
            cursor: pointer;
            transition: .2s ease;
        }

        .quick-services button:hover {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }

        .service-list {
            display: grid;
            gap: 14px;
        }

        .service-card {
            width: 100%;
            display: flex;
            justify-content: space-between;
            gap: 22px;
            align-items: center;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 20px;
            background: #fff;
            text-align: left;
            cursor: pointer;
            transition: .25s ease;
        }

        .service-card:hover {
            border-color: rgba(0, 11, 109, .25);
            transform: translateX(6px);
            box-shadow: 0 16px 32px rgba(0, 11, 109, .08);
        }

        .service-card p {
            margin: 8px 0 0;
        }

        .service-card span {
            white-space: nowrap;
            color: var(--main);
            font-weight: 700;
        }

        .back-map,
        .back-category {
            margin-top: 24px;
            border: 0;
            border-radius: 14px;
            padding: 13px 18px;
            background: var(--main);
            color: #fff;
            cursor: pointer;
            font-weight: 700;
            transition: .2s ease;
        }

        .back-map:hover,
        .back-category:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 26px rgba(0, 11, 109, .18);
        }

        .back-category {
            margin-top: 0;
            margin-bottom: 18px;
            background: #eef2ff;
            color: var(--main);
        }

        .detail-box {
            padding: 30px;
            border-radius: 28px;
            background: #fff;
            border: 1px solid var(--border);
        }

        .detail-box h2 {
            font-size: clamp(25px, 3vw, 40px);
            margin-bottom: 22px;
        }

        .detail-section {
            margin-top: 22px;
            padding: 20px;
            border-radius: 22px;
            background: #f8faff;
            border: 1px solid var(--border);
        }

        .detail-section h3 {
            margin: 0 0 12px;
            color: var(--main);
            font-size: 18px;
        }

        .detail-section ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .detail-section li {
            position: relative;
            padding-left: 28px;
            color: var(--text);
            line-height: 1.55;
        }

        .detail-section li:before {
            content: "\F26A";
            font-family: bootstrap-icons !important;
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--main);
        }

        .stage-box {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 22px;
            padding: 16px 18px;
            border-radius: 18px;
            color: var(--main);
            background: var(--main-soft);
            font-weight: 700;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(14px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 991px) {
            .e-service-layout {
                grid-template-columns: 1fr;
            }

            .e-service-sidebar {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .sidebar-title {
                grid-column: 1 / -1;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .e-services-page {
                padding: 35px 0 55px;
            }

            .e-services-hero {
                padding: 28px 22px;
                border-radius: 24px;
            }

            .e-service-content {
                padding: 16px;
            }

            .e-service-sidebar,
            .category-grid {
                grid-template-columns: 1fr;
            }

            .category-card {
                min-height: auto;
            }

            .service-card {
                display: block;
            }

            .service-card span {
                display: inline-flex;
                margin-top: 12px;
            }
        }