/*
  service-page.css — gaya bersama untuk halaman LAYANAN bertema gelap.
  Diekstrak dari blok <style> inline yang IDENTIK pada it-advisor.html & print-center.html.
  Dimuat via <link> tepat setelah css/tailwind.css (urutan cascade dipertahankan).
*/
        :root {
            --bg: #070b14;
            --card: rgba(17, 24, 39, 0.72);
            --border: rgba(255, 255, 255, 0.08);
            --text: #95a6bd;
            --light: #ffffff;
            --cyan: #00d2ff;
            --blue: #0077ff;
            --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Urbanist', sans-serif;
            background:
                radial-gradient(circle at 15% 20%, rgba(0, 119, 255, 0.18), transparent 22%),
                radial-gradient(circle at 85% 18%, rgba(0, 210, 255, 0.18), transparent 28%),
                radial-gradient(circle at 50% 82%, rgba(0, 210, 255, 0.12), transparent 26%),
                linear-gradient(180deg, #050913 0%, #070b14 42%, #0a1120 100%);
            color: var(--light);
            overflow-x: hidden;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(circle at center, black 52%, transparent 95%);
            opacity: 0.23;
            pointer-events: none;
            z-index: 0;
            animation: gridFloat 18s linear infinite;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.42) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .noise-layer {
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.065'/%3E%3C/svg%3E");
            mix-blend-mode: soft-light;
            opacity: 0.45;
            pointer-events: none;
            z-index: 0;
        }

        .aurora-layer {
            position: fixed;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
            filter: blur(85px);
            opacity: 0.75;
        }

        .aurora-layer span {
            position: absolute;
            border-radius: 9999px;
            will-change: transform;
        }

        .aurora-layer .orb-1 {
            width: 22rem;
            height: 22rem;
            top: 6%;
            left: 6%;
            background: rgba(0, 210, 255, 0.18);
            animation: floatOrb 16s ease-in-out infinite;
        }

        .aurora-layer .orb-2 {
            width: 28rem;
            height: 28rem;
            top: 12%;
            right: 8%;
            background: rgba(0, 119, 255, 0.16);
            animation: floatOrb 22s ease-in-out infinite reverse;
        }

        .glass-nav {
            background: rgba(7, 11, 20, 0.56);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .glass-nav.scrolled {
            background: rgba(7, 11, 20, 0.88);
            border-color: rgba(0, 210, 255, 0.14);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
        }

        .brand-wrap {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            padding: 0.55rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
            transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
        }

        .brand-wrap:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 210, 255, 0.24);
            background: rgba(255,255,255,0.05);
        }

        .brand-wrap img {
            filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.24));
        }

        .nav-link {
            position: relative;
            color: rgba(149, 166, 189, 0.96);
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .nav-link:hover {
            color: #fff;
            transform: translateY(-1px);
        }

        .button-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 999px;
            font-weight: 800;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            overflow: hidden;
            will-change: transform;
            background: linear-gradient(135deg, #00d2ff 0%, #7be9ff 46%, #ffffff 100%);
            color: #06111d;
            box-shadow: 0 12px 30px rgba(0, 210, 255, 0.22);
        }

        .button-primary:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 18px 40px rgba(0, 210, 255, 0.28);
        }

        .service-card {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
            box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
            will-change: transform;
            isolation: isolate;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 1.75rem;
            padding: 2rem;
        }

        .service-card:hover {
            border-color: rgba(0, 210, 255, 0.24);
            box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34), 0 0 30px rgba(0, 210, 255, 0.14);
            transform: translateY(-4px);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--cyan);
            margin-bottom: 1rem;
        }

        .floating-actions {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 60;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .floating-btn {
            width: 3.25rem;
            height: 3.25rem;
            border-radius: 9999px;
            display: grid;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .floating-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
        }

        .floating-btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .floating-btn-top {
            background: linear-gradient(135deg, #0077ff, #00d2ff);
            opacity: 0;
            pointer-events: none;
        }

        .floating-btn-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .page-header {
            position: relative;
            padding: 2rem 1.5rem;
            text-align: center;
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 2rem;
            margin-bottom: 3rem;
        }

        .page-header::before {
            content: "";
            position: absolute;
            inset: -3px;
            border-radius: inherit;
            background: conic-gradient(from 180deg, rgba(0,210,255,0), rgba(0,210,255,0.45), rgba(0,119,255,0), rgba(255,255,255,0.14), rgba(0,210,255,0));
            opacity: 0.35;
            z-index: -2;
            animation: rotateBorder 10s linear infinite;
        }

        .page-header::after {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(11, 16, 28, 0.86), rgba(7, 11, 20, 0.78));
            z-index: -1;
        }

        .icon-badge {
            width: 5rem;
            height: 5rem;
            margin: 0 auto 1.5rem;
            display: grid;
            place-items: center;
            border-radius: 1.35rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.94), #78ecff 45%, #00d2ff 72%, #0077ff 100%);
            color: #06111d;
            font-size: 2rem;
            box-shadow: 0 10px 24px rgba(0, 210, 255, 0.16);
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(28px) scale(0.985);
            transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            33% { transform: translate3d(26px, -34px, 0) scale(1.05); }
            66% { transform: translate3d(-20px, 28px, 0) scale(0.98); }
        }

        @keyframes gridFloat {
            0% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(12px, 8px, 0); }
            100% { transform: translate3d(0, 0, 0); }
        }

        @keyframes rotateBorder {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hidden { display: none !important; }
        @media (min-width: 768px) {
            .md\:flex { display: flex !important; }
            .md\:hidden { display: none !important; }
            .md\:grid { display: grid !important; }
        }
