        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-orange: #ff3d00;
            --electric-blue: #00d4ff;
            --dark-bg: #0a0e27;
            --card-bg: #141b3d;
            --text-light: #ffffff;
            --text-gray: #b8c1ec;
            --accent-purple: #9d4edd;
            --success-green: #00e676;
            --warning-amber: #ffab00;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ===== BACKGROUND ANIMATION ===== */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.06;
            background-image:
                radial-gradient(circle at 30% 20%, var(--electric-blue) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, #1a3a8f 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, var(--neon-orange) 0%, transparent 60%);
            animation: bgFloat 20s ease-in-out infinite;
        }

        @keyframes bgFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        /* Floating particles */
        .bg-particles {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--electric-blue);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(-10vh) scale(1);
                opacity: 0;
            }
        }

        /* ===== HEADER ===== */
        header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 14px 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--electric-blue);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(255, 61, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo a {
            display: inline-flex;
            text-decoration: none;
        }

        .logo img {
            height: 90px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 10px;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            padding: 14px 24px;
            display: block;
            border-radius: 10px;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 61, 0, 0.2), transparent);
            transition: left 0.5s;
        }

        nav ul li a:hover::before {
            left: 100%;
        }

        nav ul li a:hover {
            background: rgba(255, 61, 0, 0.1);
            transform: translateY(-2px);
        }

        .button-link {
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35) !important;
            font-weight: 800 !important;
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
            border-radius: 4px !important;
            clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
            padding: 14px 34px !important;
        }

        .button-link:hover {
            box-shadow: 0 15px 40px rgba(255, 61, 0, 0.5);
            transform: scale(1.05) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .main-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px 80px;
            width: 100%;
            flex: 1;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
        }

        .social-links {
            margin: 30px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 22px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--neon-orange), var(--electric-blue));
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 61, 0, 0.4);
        }

        /* ===== PAGE TITLE ===== */
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            padding-top: 10px;
        }

        .page-title h1 {
            font-size: 56px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffffff 0%, var(--electric-blue) 50%, #66e0ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 5s ease-in-out infinite;
        }

        @keyframes titleGlow {

            0%,
            100% {
                filter: brightness(1);
            }

            50% {
                filter: brightness(1.3);
            }
        }

        .page-title p {
            color: var(--text-gray);
            font-size: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ===== SEARCH BOX ===== */
        .search-box {
            background: rgba(10, 15, 40, 0.95);
            border: 1px solid rgba(0, 212, 255, 0.15);
            border-radius: 24px;
            padding: 50px 45px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 0 60px rgba(0, 212, 255, 0.08),
                0 20px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .search-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .search-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03), transparent 50%);
            pointer-events: none;
        }

        .search-box h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box h2 i {
            color: var(--electric-blue);
            font-size: 24px;
            filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
        }

        .search-box .subtitle {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 30px;
        }

        .search-form {
            display: flex;
            gap: 12px;
            align-items: stretch;
        }

        .phone-input-wrapper {
            flex: 1;
            position: relative;
        }

        .phone-input-wrapper i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--electric-blue);
            font-size: 20px;
            z-index: 2;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
        }

        .phone-input {
            width: 100%;
            padding: 22px 22px 22px 55px;
            background: rgba(0, 212, 255, 0.03);
            border: 2px solid rgba(0, 212, 255, 0.15);
            border-radius: 16px;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 3px;
            transition: all 0.4s ease;
        }

        .phone-input::placeholder {
            color: rgba(0, 212, 255, 0.25);
            font-weight: 400;
            letter-spacing: 1px;
            font-size: 16px;
        }

        .phone-input:focus {
            outline: none;
            border-color: var(--electric-blue);
            background: rgba(0, 212, 255, 0.06);
            box-shadow:
                0 0 0 4px rgba(0, 212, 255, 0.1),
                0 0 30px rgba(0, 212, 255, 0.1);
        }

        .search-btn {
            background: linear-gradient(135deg, var(--electric-blue), #0097b2);
            color: white;
            border: none;
            padding: 22px 40px;
            border-radius: 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .search-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .search-btn:hover::before {
            left: 100%;
        }

        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        .search-btn:active {
            transform: translateY(0);
        }

        .search-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ===== LOADING ===== */
        .loading {
            display: none;
            text-align: center;
            padding: 60px 20px;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(0, 212, 255, 0.15);
            border-top-color: var(--electric-blue);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading p {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* ===== EMPTY / ERROR STATES ===== */
        .state-message {
            display: none;
            text-align: center;
            padding: 60px 20px;
            background: rgba(15, 20, 43, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
        }

        .state-message.active {
            display: block;
        }

        .state-message i {
            font-size: 60px;
            margin-bottom: 20px;
            display: block;
        }

        .state-message.empty i {
            color: var(--electric-blue);
            opacity: 0.5;
        }

        .state-message.error i {
            color: #ff5252;
        }

        .state-message h3 {
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .state-message p {
            color: var(--text-gray);
            font-size: 14px;
            max-width: 400px;
            margin: 0 auto;
        }

        /* ===== RESULTS ===== */
        .results {
            display: none;
        }

        .results.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Client info summary */
        .client-summary {
            background: rgba(15, 20, 43, 0.9);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 16px;
            padding: 25px 30px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .client-details h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .client-details .client-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .client-meta span {
            color: var(--text-gray);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .client-meta span i {
            color: var(--electric-blue);
            font-size: 12px;
        }

        /* ===== MOTORCYCLE SECTION ===== */
        .moto-section {
            margin-bottom: 35px;
        }

        .moto-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px 20px;
            background: rgba(0, 212, 255, 0.06);
            border: 1px solid rgba(0, 212, 255, 0.15);
            border-radius: 12px;
        }

        .moto-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--electric-blue), #0097b2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #000;
            flex-shrink: 0;
        }

        .moto-info h3 {
            font-size: 18px;
            font-weight: 700;
        }

        .moto-info .record-count {
            color: var(--text-gray);
            font-size: 13px;
        }

        /* ===== NEXT SERVICE ALERT ===== */
        .next-service-alert {
            background: linear-gradient(135deg, rgba(255, 171, 0, 0.1), rgba(255, 61, 0, 0.05));
            border: 1px solid rgba(255, 171, 0, 0.3);
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .next-service-alert i {
            font-size: 28px;
            color: var(--warning-amber);
            flex-shrink: 0;
        }

        .next-service-alert .alert-content h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--warning-amber);
            margin-bottom: 3px;
        }

        .next-service-alert .alert-content p {
            font-size: 13px;
            color: var(--text-gray);
        }

        .next-service-alert .alert-content span {
            color: var(--text-light);
            font-weight: 600;
        }

        .next-service-overdue {
            border-color: rgba(255, 82, 82, 0.4);
            background: linear-gradient(135deg, rgba(255, 82, 82, 0.1), rgba(255, 61, 0, 0.05));
        }

        .next-service-overdue i,
        .next-service-overdue .alert-content h4 {
            color: #ff5252;
        }

        /* ===== TIMELINE ===== */
        .timeline {
            position: relative;
            padding-left: 35px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--electric-blue), rgba(0, 212, 255, 0.1));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 20px;
            padding: 22px 25px;
            background: rgba(15, 20, 43, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .timeline-item:hover {
            border-color: rgba(0, 212, 255, 0.2);
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 28px;
            width: 12px;
            height: 12px;
            background: var(--electric-blue);
            border-radius: 50%;
            border: 3px solid var(--dark-bg);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .timeline-date-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .timeline-date {
            font-size: 13px;
            color: var(--electric-blue);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .timeline-mileage {
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .timeline-mileage i {
            color: var(--neon-orange);
        }

        .timeline-service-type {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .timeline-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .detail-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-gray);
        }

        .detail-tag i {
            font-size: 11px;
            color: var(--electric-blue);
        }

        .detail-tag.price-tag {
            border-color: rgba(0, 230, 118, 0.3);
            color: var(--success-green);
        }

        .detail-tag.price-tag i {
            color: var(--success-green);
        }

        .timeline-notes {
            font-size: 13px;
            color: var(--text-gray);
            font-style: italic;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark-bg);
            text-align: center;
            padding: 50px 30px;
            color: var(--text-gray);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright {
            color: var(--text-gray);
            margin-top: 30px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .logo img {
                height: 64px;
            }

            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                left: -100%;
                top: 94px;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.3s ease;
                border-top: 1px solid var(--electric-blue);
                z-index: 999;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 2px;
            }

            nav ul li a {
                padding: 14px 20px;
            }

            .main-container {
                padding: 20px 15px 60px;
            }

            .page-title h1 {
                font-size: 32px;
            }

            .search-box {
                padding: 25px 20px;
            }

            .search-form {
                flex-direction: column;
            }

            .phone-input {
                font-size: 16px;
                padding: 16px 16px 16px 45px;
            }

            .search-btn {
                justify-content: center;
                padding: 18px;
                font-size: 15px;
            }

            .page-title h1 {
                font-size: 36px;
            }

            .client-summary {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .client-details .client-meta {
                justify-content: center;
            }

            .moto-header {
                flex-direction: column;
                text-align: center;
            }

            .timeline {
                padding-left: 28px;
            }

            .timeline-date-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .timeline-item {
                padding: 18px;
            }

            footer {
                padding: 35px 20px;
            }

            .footer-content {
                max-width: 1300px;
                margin: 0 auto;
            }

            .social-links {
                margin: 20px 0;
                gap: 15px;
            }

            .social-links a {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .copyright {
                font-size: 13px;
                margin-top: 20px;
            }
        }

        /* ===== INITIAL HERO ===== */
        .initial-state {
            text-align: center;
            padding: 40px 20px;
        }

        .initial-state .hero-icon {
            font-size: 80px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--neon-orange), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .initial-state h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .initial-state p {
            color: var(--text-gray);
            font-size: 14px;
            max-width: 400px;
            margin: 0 auto;
        }

        .initial-steps {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .initial-step {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-num {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--neon-orange), #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .step-text {
            color: var(--text-gray);
            font-size: 13px;
            text-align: left;
        }
