:root {
            --bg-base: #faf9f6;
            --bg-surface: #ffffff;
            --border-color: #1e293b;
            --text-primary: #1e293b;
            --text-secondary: #64748b;

            /* Cartoon accent colors */
            --accent-primary: #7c3aed;
            --accent-secondary: #ec4899;
            --accent-success: #16a34a;
            --accent-yellow: #facc15;

            /* Cartoon Neobrutalism Shadows */
            --card-shadow: 6px 6px 0px #1e293b;
            --button-shadow: 4px 4px 0px #1e293b;
            --button-hover-shadow: 2px 2px 0px #1e293b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-base);
            background-image: radial-gradient(rgba(30, 41, 59, 0.12) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Ambient Glow Hidden */
        .ambient-glow {
            display: none;
        }

        /* Navbar styling - Premium Cartoon/Neobrutalism */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 5%;
            background: #ffffff;
            border-bottom: 2px solid #1e293b;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .brand-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            border: 2px solid #1e293b;
            box-shadow: 3px 3px 0px #1e293b;
        }

        .nav-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-links a {
            font-family: 'Fredoka', sans-serif;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s, transform 0.2s;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -4px;
            left: 0;
            background: var(--accent-primary);
            border-radius: 99px;
            transition: width 0.2s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Hamburger Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
            padding: 4px;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.4);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 9999;
        }

        .menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            border-left: 2px solid #1e293b;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            padding: 24px;
            text-align: left;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 2px dashed #1e293b;
            margin-bottom: 24px;
        }

        .menu-close {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-menu-links a {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu-links a:hover {
            color: var(--accent-primary);
        }

        .btn-login-mobile {
            margin-top: 15px;
            background: var(--accent-primary);
            color: #fff !important;
            padding: 12px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid #1e293b;
            box-shadow: 4px 4px 0px #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            text-decoration: none !important;
        }

        .btn-login-mobile:active {
            transform: translate(2px, 2px);
            box-shadow: none;
        }

        @media (max-width: 1100px) {
            .nav-links {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
        }

        /* Content Container */
        .content-container {
            max-width: 1100px;
            margin: 120px auto 60px;
            padding: 0 24px;
        }

        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .header-section h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .header-section p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Controls Section */
        .controls-panel {
            background: var(--bg-surface);
            border: 2px solid #1e293b;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: var(--card-shadow);
        }

        /* Tabs */
        .tabs-wrapper {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 4px;
        }

        /* Hide Scrollbar */
        .tabs-wrapper::-webkit-scrollbar {
            height: 4px;
        }
        .tabs-wrapper::-webkit-scrollbar-thumb {
            background: rgba(30, 41, 59, 0.1);
            border-radius: 4px;
        }

        .tab-btn {
            background: #ffffff;
            border: 2px solid #1e293b;
            color: var(--text-primary);
            padding: 10px 20px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            box-shadow: 3px 3px 0px #1e293b;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .tab-btn:hover {
            color: var(--text-primary);
            background: #fbfbfa;
            transform: translate(1px, 1px);
            box-shadow: 2px 2px 0px #1e293b;
        }

        .tab-btn.active {
            background: var(--accent-primary);
            color: #fff;
            box-shadow: 2px 2px 0px #1e293b;
            transform: translate(1px, 1px);
        }

        /* Search Box */
        .search-wrapper {
            position: relative;
            width: 100%;
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-primary);
            font-size: 16px;
        }

        .search-box {
            width: 100%;
            background: #ffffff;
            border: 2px solid #1e293b;
            color: var(--text-primary);
            padding: 12px 16px 12px 48px;
            border-radius: 12px;
            font-size: 15px;
            box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.03);
            transition: border-color 0.2s;
        }

        .search-box:focus {
            border-color: var(--accent-primary);
            outline: none;
        }

        /* Services Render List */
        .services-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .category-group {
            animation: fadeIn 0.4s ease;
        }

        .category-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category-title i {
            color: var(--accent-primary);
        }

        /* Cartoon Table Layout */
        .srv-table-container {
            background: var(--bg-surface);
            border: 2px solid #1e293b;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .srv-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .srv-table th {
            background: #f8fafc;
            padding: 16px 20px;
            font-family: 'Fredoka', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-primary);
            border-bottom: 2px solid #1e293b;
            border-right: 2px solid #e2e8f0;
        }

        .srv-table th:last-child {
            border-right: none;
        }

        .srv-table td {
            padding: 16px 20px;
            font-size: 14px;
            border-bottom: 2px solid #e2e8f0;
            border-right: 2px solid #e2e8f0;
            color: var(--text-primary);
            vertical-align: middle;
        }

        .srv-table td:last-child {
            border-right: none;
        }

        .srv-table tr:last-child td {
            border-bottom: none;
        }

        .srv-table tr:hover td {
            background: rgba(30, 41, 59, 0.01);
        }

        .srv-cell-id {
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            opacity: 0.6;
            width: 80px;
        }

        .srv-cell-name {
            font-weight: 700;
            color: var(--text-primary);
        }

        .srv-cell-name .srv-badge {
            font-family: 'Fredoka', sans-serif;
            font-size: 11px;
            font-weight: 600;
            background: var(--accent-secondary);
            color: #ffffff;
            padding: 3px 10px;
            border-radius: 8px;
            border: 2px solid #1e293b;
            box-shadow: 2px 2px 0px #1e293b;
            margin-left: 8px;
            text-transform: uppercase;
            display: inline-block;
        }

        .srv-cell-limits {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .srv-cell-price {
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            color: var(--accent-success);
            font-size: 16px;
        }

        .srv-cell-action {
            text-align: right;
            width: 150px;
        }

        .btn-order-now {
            background: var(--accent-primary);
            color: #fff !important;
            padding: 10px 18px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 2px solid #1e293b;
            box-shadow: 3px 3px 0px #1e293b;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .btn-order-now:hover {
            transform: translate(1px, 1px);
            box-shadow: 2px 2px 0px #1e293b;
        }

        .btn-order-now:active {
            transform: translate(3px, 3px);
            box-shadow: none;
        }

        /* Loading */
        .loading-state {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }

        /* Footer */
        .footer {
            background: #ffffff;
            padding: 80px 5% 40px;
            border-top: 2px solid #1e293b;
            position: relative;
            margin-top: 80px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            gap: 50px;
            text-align: left;
        }

        .footer-col {
            flex: 1.5;
            min-width: 250px;
        }

        .footer-col.links-col {
            flex: 1;
        }

        .footer-col p {
            color: var(--text-secondary);
            margin-top: 20px;
            font-size: 15px;
            max-width: 320px;
        }

        .footer-col h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            position: relative;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            font-family: 'Fredoka', sans-serif;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 80px;
            padding-top: 30px;
            border-top: 2px dashed #1e293b;
            color: var(--text-secondary);
            font-size: 15px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile View Optimization */
        @media (max-width: 900px) {
            .srv-table th:nth-child(1), .srv-table td:nth-child(1) { display: none; } /* hide ID */
            .srv-table th:nth-child(3), .srv-table td:nth-child(3) { display: none; } /* hide limits */
            
            .srv-table th, .srv-table td {
                padding: 12px;
            }

            .srv-cell-name {
                font-size: 13px;
            }

            .srv-cell-price {
                font-size: 13px;
            }

            .btn-order-now {
                padding: 8px 12px;
                font-size: 11px;
                border-radius: 8px;
                border-width: 2px;
                box-shadow: 2px 2px 0px #1e293b;
            }

            .btn-order-now:hover {
                transform: translate(1px, 1px);
                box-shadow: 1px 1px 0px #1e293b;
            }

            .btn-order-now:active {
                transform: translate(2px, 2px);
                box-shadow: none;
            }

            .srv-cell-action {
                width: 110px;
            }
        }
