
        :root {
            /* --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            --primary-gradient: linear-gradient(45deg, #0056b3, #ff6b00);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            
            /* Light theme variables */
            --light-bg: #f8fafc;
            --light-surface: #ffffff;
            --light-text: #1e293b;
            --light-text-secondary: #64748b;
            --light-border: #f1f5f9;
            --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
            --hover-shadow: 0 20px 60px rgba(0,0,0,0.15);
            --badge-bg:#f8fafc;
            
            /* Dark theme variables */
            --dark-bg: #0f172a;
            --dark-surface: #1e293b;
            --dark-text: #f8fafc;
            --dark-text-secondary: #94a3b8;
            --dark-border: #334155;
            --dark-card-shadow: 0 10px 40px rgba(0,0,0,0.3);
            --dark-hover-shadow: 0 20px 60px rgba(0,0,0,0.4);
            --dark-badge-bg: #333333;
            --dark-badge-text: #ffffff;
            
            /* Default to light theme */
            --bg-color: var(--light-bg);
            --surface-color: var(--light-surface);
            --text-color: var(--light-text);
            --text-secondary: var(--light-text-secondary);
            --border-color: var(--light-border);
            --shadow: var(--card-shadow);
            --shadow-hover: var(--hover-shadow);
        }

            [data-theme="dark"] {
                --bg-color: var(--dark-bg);
                --surface-color: var(--dark-surface);
                --text-color: var(--dark-text);
                --text-secondary: var(--dark-text-secondary);
                --border-color: var(--dark-border);
                --shadow: var(--dark-card-shadow);
                --shadow-hover: var(--dark-hover-shadow);
                --badge-bg: var(--dark-badge-bg);
                --badge-text: var(--dark-badge-text);
            }

        * {
            font-family: 'Inter', sans-serif;
        }

        body {
            background: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h2 {
            color: var(--text-color);
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .navbar {
            background: rgba(30, 41, 59, 0.95);
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            /* background: var(--primary-gradient); */
            background: rgb(33 88 155);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 700;
            color: var(--text-secondary) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #667eea !important;
        }

        .theme-toggle {
            background: none;
            border: 2px solid var(--border-color);
            color: var(--text-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .theme-toggle:hover {
            border-color: #667eea;
            color: #667eea;
            transform: rotate(180deg);
        }

        .hero-section {
            background: var(--primary-gradient);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .promo-card {
            background: var(--secondary-gradient);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .discount-badge {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .btn-primary-custom {
            background: var(--primary-gradient);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .filter-section {
            background: var(--surface-color);
            border-radius: 20px;
            padding: 2rem;
            margin: -40px 0 60px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 3;
            border: 1px solid var(--border-color);
        }

        .category-sidebar {
            background: var(--surface-color);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid var(--border-color);
        }

        .category-title {
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            color: var(--text-secondary);
            text-decoration: none;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .category-item:hover {
            color: #667eea;
            padding-left: 10px;
        }

        .category-count {
            background: var(--border-color);
            color: var(--text-secondary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        [data-theme="dark"] .category-count {
            background: var(--dark-border);
            color: var(--dark-text-secondary);
        }

        /* rev1 */
        /* .template-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        } */

        /* rev2 */
        .template-card {
            /* background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
            display: flex;
            flex-direction: column; */

            
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
        }

        /* rev1 */
        /* .template-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        } */

        /* rev2 */
        .template-card:hover {
            /* transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15); */

            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .template-card.selected {
            border-color: #3b82f6;
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
            transform: translateY(-8px);
        }

        .template-image {
            position: relative;
            overflow: hidden;
            /* height: 200px; */
            height: 150px;
        }

        /* rev2 */
        .template-image-bg {
            height: 220px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.4s ease;
        }

        .template-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .template-card:hover .template-image img {
            transform: scale(1.05);
        }

        /* rev1 */
        /* .template-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        /* rev2 */
        .template-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .template-card:hover .template-overlay {
            opacity: 1;
        }

        /* rev1 */
        .template-content {
            padding: 1.5rem;
        }

        /* rev2 */
        .template-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* rev1 */
        /* .template-title {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.4;
        } */
         /* rev2 */
        .template-title {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin: 0;
            line-height: 1.3;
            display: -webkit-box;
            /* -webkit-line-clamp: 2; */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .template-price {
            background: var(--secondary-gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .template-actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
        }

        /* v1 */
        /* .template-actions .btn-action {
            flex: 1;
        } */

        /* v2 */
        .btn-action {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            /* padding: 12px 16px; */
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 12px;
            border: none;
            cursor: pointer;
        }

        .btn-buy {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background-color: rgb(1 160 228 / var(--tw-bg-opacity, 1));
            color: white;
        }

        .btn-buy:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        
        .btn-detail {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
        }

        .btn-detail:hover {
            background: linear-gradient(135deg, #0e8578 0%, #2dd865 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
        }

        .btn-download {
            /* background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); */
            /* color: #8b4513; */
            color: #fefefe;
            background: rgba(244, 149, 35, var(--tw-bg-opacity, 1));

        }

        .btn-download:hover {
            background: linear-gradient(135deg, #fde2c7 0%, #fb9f7a 100%);
            color: #8b4513;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(252, 182, 159, 0.4);
        }

        .btn-preview {
            background: rgba(255,255,255,0.95);
            color: #2d3748;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn-preview:hover {
            background: white;
            color: #2d3748;
            transform: translateY(-2px);
        }

        /* .fade-in {
            animation: fadeInUp 0.6s ease-out;
        } */
        
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

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

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

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .template-image-bg {
                height: 180px;
            }
            
            .template-content {
                padding: 16px;
            }
            
            .template-title {
                font-size: 16px;
            }
            
            .btn-action {
                padding: 10px 14px;
                font-size: 13px;
                gap: 6px;
            }
        }

        @media (max-width: 576px) {
            .template-image-bg {
                height: 160px;
            }
            
            .template-actions {
                gap: 6px;
            }
            
            .btn-action {
                padding: 8px 12px;
                font-size: 12px;
            }
            
            .web-badge {
                padding: 4px 8px;
                font-size: 10px;
            }
        } 

        /* Grid responsive */
        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 20px;
        }

        @media (max-width: 576px) {
            .template-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 16px;
            }
        }


        /* end for card thema samso supriyatna */

        .tech-stack {
            display: flex;
            gap: 8px;
            margin-top: 1rem;
        }

        .tech-badge {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .tech-html { background: #e34f26; }
        .tech-css { background: #1572b6; }
        .tech-js { background: #f7df1e; color: #000; }
        .tech-bootstrap { background: #7952b3; }
        .tech-tailwind { background: #06b6d4; }

        .web-badge {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: var(--primary-gradient);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

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

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .category-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
            
            .promo-card {
                text-align: center;
                margin-bottom: 2rem;
            }
        }


        /* untuk footer */


        /* Ultra Modern Footer */
        .ultra-footer {
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Particles */
        .ultra-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
            animation: particles 20s linear infinite;
        }

        @keyframes particles {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Floating Elements */
        .ultra-footer::after {
            /* content: '✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★'; */
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            letter-spacing: 3rem;
            animation: sparkle 15s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: translateX(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateX(100%); opacity: 0; }
        }

        .footer-content {
            position: relative;
            z-index: 10;
        }

        /* Brand Section */
        .brand-container {
            text-align: center;
            margin-bottom: 3rem;
        }

        .brand-logo {
            background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: rainbow 3s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
        }

        @keyframes rainbow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            margin-top: 1rem;
            font-style: italic;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Premium Cards */
        .footer-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

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

        .footer-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-card:hover::before {
            left: 100%;
        }

        /* Section Titles */
        .section-title {
            color: #191717;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title i {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 10px;
            font-size: 1.5rem;
        }

        /* Social Media Icons */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1rem;
            text-decoration: none;
            color: #fff;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .social-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.4s ease;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .social-item:hover::before {
            width: 200px;
            height: 200px;
        }

        .social-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            color: #fff;
        }

        .social-item.facebook:hover { border-color: #1877f2; box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3); }
        .social-item.twitter:hover { border-color: #1da1f2; box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3); }
        .social-item.instagram:hover { border-color: #e4405f; box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3); }
        .social-item.github:hover { border-color: #333; box-shadow: 0 10px 30px rgba(51, 51, 51, 0.3); }
        .social-item.linkedin:hover { border-color: #0077b5; box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3); }
        .social-item.youtube:hover { border-color: #ff0000; box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3); }

        .social-icon {
            font-size: 1.5rem;
            margin-right: 10px;
            position: relative;
            z-index: 2;
        }

        .social-text {
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        /* Categories Links */
        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-item {
            margin-bottom: 1rem;
        }

        .category-link {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .category-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: translateX(10px);
            border-left-color: #ff6b6b;
        }

        .category-link i {
            margin-right: 10px;
            color: #4ecdc4;
            font-size: 1.1rem;
        }

        /* Contact Items */
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-icon-wrapper {
            width: 40px;
            height: 40px;
            /* width: 50px;
            height: 50px; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            position: relative;
            overflow: hidden;
        }

        .contact-icon-wrapper.email {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
        }

        .contact-icon-wrapper.phone {
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
        }

        .contact-icon-wrapper.location {
            background: linear-gradient(45deg, #ffd93d, #ff6b6b);
        }

        .contact-icon-wrapper.whatsapp {
            background: linear-gradient(45deg, #25d366, #128c7e);
        }

        .contact-icon {
            color: #fff;
            font-size: 1.3rem;
            z-index: 2;
        }

        .contact-info {
            flex: 1;
        }

        .contact-label {
            font-weight: 600;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .contact-value {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Bottom Section */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding: 2rem 0;
        }

        .copyright-text {
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            font-size: 0.95rem;
        }

        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .footer-links-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links-bottom a:hover {
            color: #4ecdc4;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .brand-logo {
                font-size: 2rem;
                letter-spacing: 1px;
            }
            
            .social-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links-bottom {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(78, 205, 196, 0); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }


        /* css untuk detail */
        /* Main Content */
        .detail-container {
            margin-top: 100px;
            margin-bottom: 50px;
        }

        .template-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            /* padding: 60px 0; */
            padding: 120px 0 80px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .template-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .template-header .container {
            position: relative;
            z-index: 2;
        }

        .template-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .template-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .badge-custom {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
        }

        .badge-premium {
            background: rgba(255, 193, 7, 0.9);
            color: #000;
        }

        .badge-responsive {
            background: rgba(40, 167, 69, 0.9);
            color: white;
        }

        .badge-category {
            background: rgba(108, 117, 125, 0.9);
            color: white;
        }

        /* Preview Section */
        .preview-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }

        .preview-image {
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            cursor: pointer;
        }

        .preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .preview-image:hover .preview-overlay {
            opacity: 1;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        /* Info Cards */
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .info-card h4 {
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card h4 i {
            color: #667eea;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list i {
            color: #10b981;
            font-size: 16px;
            width: 20px;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

        .spec-icon {
            color: #667eea;
            font-size: 20px;
        }

        .spec-text {
            flex: 1;
        }

        .spec-label {
            font-weight: 600;
            color: #1e293b;
            font-size: 14px;
        }

        .spec-value {
            color: #64748b;
            font-size: 13px;
        }

        /* Action Buttons */
        .action-section {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            text-align: center;
            margin-bottom: 40px;
        }

        .price-display {
            font-size: 2.2rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .price-note {
            color: #64748b;
            margin-bottom: 30px;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }


        .btn-demo {
            /* background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); */
            background-color: rgb(1 160 228 / var(--tw-bg-opacity, 1));
            color: white;
        }

        .btn-demo:hover {
            /* background: linear-gradient(135deg, #0e8578 0%, #2dd865 100%); */
            background: linear-gradient(135deg, #0e8578 0%, #458bdb 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
        }

        /* .btn-download {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            color: #8b4513;
        }

        .btn-download:hover {
            background: linear-gradient(135deg, #fde2c7 0%, #fb9f7a 100%);
            color: #8b4513;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(252, 182, 159, 0.4);
        } */

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        /* Related Templates */
        .related-section {
            margin-top: 60px;
        }

        .section-title-detail {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title-detail::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .related-card:hover {
            transform: translateY(-8px);
        }

        .related-image {
            width: 100%;
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .related-content {
            padding: 20px;
        }

        .related-title {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .related-price {
            color: #667eea;
            font-weight: 600;
            font-size: 18px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .template-title {
                font-size: 2rem;
            }

            .preview-image {
                height: 300px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-action {
                width: 100%;
                justify-content: center;
            }

            .spec-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

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


        /* css untuk halaman service */

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles untuk aksesibilitas */
        *:focus {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        .services-section {
            /* padding: 120px 0; */
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(79,70,229,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            z-index: 0;
        }

        .services-section > .container {
            position: relative;
            z-index: 1;
        }

        /* Enhanced Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-color);
            background: rgba(79, 70, 229, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .section-subtitle::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .section-main-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 0 auto;
            border-radius: 2px;
            position: relative;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid white;
        }

        /* Enhanced Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            /* min-height: 400px; */
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(79, 70, 229, 0.2);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: #4f46e5;
            color: white;
        }

        .service-card:hover .service-title {
            color: var(--primary-color);
        }

        /* Service Icon Styles */
        .service-icon {
            /* width: 80px; */
            width: 70px;
            /* height: 80px; */
            height: 70px;
            margin: 0 auto 30px;
            /* background: rgba(79, 70, 229, 0.1); */
            /* background: rgba(106, 102, 186, 0.86); */
            background: rgba(255, 193, 7, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid rgba(79, 70, 229, 0.2);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-icon::after {
            opacity: 1;
        }

        /* Service Content */
        .service-content {
            flex-grow: 1;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-description {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 30px;
            font-weight: 500;
            font-family: Inter, sans-serif;
        }

        /* Enhanced Button */
        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 25px;
            background: var(--gradient-primary);
                        background-image: linear-gradient(135deg, rgb(79, 70, 229) 0%, rgb(99, 102, 241) 100%);
                        background-position-x: initial;
                        background-position-y: initial;
                        background-size: initial;
                        background-repeat: initial;
                        background-attachment: initial;
                        background-origin: initial;
                        background-clip: initial;
                        background-color: initial;
            color: rgb(243, 242, 244);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 150px;
        }

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

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

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
            color: rgb(20, 20, 20);
            text-decoration: none;
        }

        .service-btn i {
            transition: transform 0.3s ease;
        }

        .service-btn:hover i {
            transform: translateX(3px);
        }

        /* Service Card Variants */
        .service-card:nth-child(1) { --accent-color: #ef4444; }
        .service-card:nth-child(2) { --accent-color: #10b981; }
        .service-card:nth-child(3) { --accent-color: #f59e0b; }

        .service-card:nth-child(1):hover .service-icon { background: linear-gradient(135deg, #ef4444, #f87171); }
        .service-card:nth-child(2):hover .service-icon { background: linear-gradient(135deg, #10b981, #34d399); }
        .service-card:nth-child(3):hover .service-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

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

        /* Stagger animation delays */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 80px 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 40px;
            }

            .service-card {
                padding: 30px 20px;
                min-height: 350px;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .section-title {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 576px) {
            .service-card {
                border-radius: 20px;
                padding: 25px 15px;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {

            .service-card {
                background: #e5e7ea;
                border-color: #c7cace;
            }

            .service-title {
                color: #35373a;
            }

            .service-description {
                /* color: #1b1c1e; */
                color: #1b1c1ee0;
            }

            .section-main-title {
                color: #1b1c1e;
            }
        }

        /* Accessibility improvements */
        .service-card:focus-within {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .service-btn:focus {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Performance optimizations */
        .service-card {
            will-change: transform;
        }

        .service-icon {
            will-change: transform;
        }

        /* Enhanced interactive states */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(79, 70, 229, 0.05);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        /* Statistics or badges */
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            /* background: rgba(79, 70, 229, 0.1);
            color: var(--primary-color); */
            background-color: var(--badge-bg);
            color: var(--badge-text);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Floating elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            background: rgba(79, 70, 229, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: -4s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: -1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* CSS untuk Title */

        .portfolio-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            max-width: 900px;
            margin: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .main-title {
            font-size: 2.5rem;
            font-weight: 600;
            /* background: linear-gradient(135deg, #667eea, #764ba2); */
            background: rgb(33 88 155);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: -1px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
                text-align: center;
        }

        .subtitle {
            /* font-size: 1.3rem; */
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInRight 0.8s ease-out 0.4s both; 
            text-align: center;
        }

        .description-title {
            /* font-size: 1.3rem; */
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInRight 0.8s ease-out 0.4s both; 
            text-align: center;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            margin: 0 auto 40px;
            border-radius: 2px;
            animation: scaleIn 0.6s ease-out 0.6s both;    
            text-align: center;
        }

        .navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            animation: fadeIn 0.8s ease-out 0.8s both;
        }

        .nav-item-beranda {
            /* padding: 12px 25px; */
            padding: 8px 20px;
            background: transparent;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            color: #64748b;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: .875rem;
        }

        .nav-item-beranda:first-child,
        .nav-item-beranda.active {
            /* background: linear-gradient(135deg, #667eea, #764ba2); */
            background: rgba(255, 193, 7, 0.9);
            /* color: white; */
            color: rgb(7, 7, 7);
            border-color: transparent;
        }

        .nav-item-beranda:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .nav-item-beranda:not(.active):hover {
            /* background: linear-gradient(135deg, #667eea, #764ba2); */
            background: rgba(255, 193, 7, 0.9);
            /* color: white; */
            color: rgb(0, 0, 0);
            border-color: transparent;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scaleX(0);
            }
            to {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* untuk halaman testimoni */
        
        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.2rem;
            opacity: 0.9;
        }


        /* -------------------------------------------------------------------------- */
        
        /* Testimonial Slider */
        .testimonial-slider {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .testimonial-track {
            display: flex;
            animation: slide 20s linear infinite;
            gap: 30px;
            width: calc(400px * 12); /* 6 items × 2 untuk seamless loop */
        }

        .testimonial-card {
            min-width: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: #667eea;
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .testimonial-content {
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: #2d3748;
            /* font-weight: 600; */
            font-weight: 500;
            margin-bottom: 2px;
            font-size: 1.2rem;
        }

        .author-info span {
            color: #718096;
            font-size: 0.9rem;
        }

        .rating {
            margin-top: 10px;
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Animation */
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6 - 180px)); /* Move by 6 cards + gaps */
            }
        }

        /* Pause animation on hover */
        .testimonial-slider:hover .testimonial-track {
            animation-play-state: paused;
        }

        /* Navigation Dots */
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Control Buttons */
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            opacity: 0;
            z-index: 10;
        }

        .testimonial-slider:hover .slider-controls {
            opacity: 1;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .slider-controls:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .testimonial-card {
                min-width: 280px;
            }

            .testimonial-track {
                width: calc(310px * 12);
            }

            @keyframes slide {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-280px * 6 - 180px));
                }
            }

            .slider-controls {
                display: none;
            }
        }

        /* Loading animation */
        /* .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            color: white;
            font-size: 1.2rem;
        }

        .loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        } */

        /* buat gambar */
        .responsive-img {
            max-width: 100%;
            height: auto;
            display: block;
        }


        /* css untuk tampilan pada checkout */
        
        
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: linear-gradient(45deg, #0056b3, #ff6b00);
            
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

             .checkout-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            gap: 50px;
            min-height: 100vh;
            align-items: flex-start;
        }
        
        .sidebar {
            width: 340px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 40px 32px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: sticky;
            top: 40px;
        }
        
        .checkout-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        
        .timeline-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .timeline-title {
            font-size: 20px;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .timeline-subtitle {
            font-size: 14px;
            color: #6b7280;
        }

        .timeline-container {
            position: relative;
            padding-left: 24px;
        }

        .timeline-line {
            position: absolute;
            left: 22px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #10b981 0%, #3b82f6 50%, #e5e7eb 100%);
            border-radius: 2px;
        }

        .step {
            position: relative;
            margin-bottom: 32px;
            background: rgba(255, 255, 255, 0.7);
            padding: 24px 20px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .step.completed {
            border-color: rgba(16, 185, 129, 0.3);
            background: linear-gradient(135deg, rgba(240, 253, 244, 0.8), rgba(220, 252, 231, 0.8));
        }

        .step.active {
            border-color: rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(219, 234, 254, 0.9));
            transform: translateX(4px);
        }

        .step-number {
            position: absolute;
            left: -34px;
            top: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .step.completed .step-number {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            border: 3px solid #ffffff;
        }

        .step.active .step-number {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
            transform: scale(1.15);
            border: 3px solid #ffffff;
        }

        .step.pending .step-number {
            background: #f9fafb;
            color: #9ca3af;
            border: 3px solid #e5e7eb;
        }

        .step-content h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #111827;
            line-height: 1.3;
        }

        .step-content p {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .step.completed .step-content h3 {
            color: #047857;
        }

        .step.active .step-content h3 {
            color: #1e40af;
        }

        .selected-domain {
            margin-top: 12px;
            padding: 12px 16px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        .main-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 48px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .main-content h1 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #1f2937, #374151);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .main-content h1::before {
            content: '🎨';
            font-size: 28px;
        }

        .page-subtitle {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .filter-section-checkout {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .filter-label {
            font-weight: 600;
            color: #374151;
            font-size: 14px;
        }

        .filter-select {
            padding: 8px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .filter-select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                gap: 30px;
                padding: 20px;
            }
            
            .sidebar {
                width: 100%;
                position: relative;
            }
            
            .main-content {
                padding: 32px 24px;
            }
            
            .checkout-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* untuk halaman form ------------------------------------------------------------------------------------------------- */

        
        .form-section {
            background: rgba(255, 255, 255, 0.7);
            padding: 32px;
            border-radius: 20px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .form-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-section p {
            color: #6b7280;
            margin-bottom: 24px;
            font-size: 14px;
            line-height: 1.6;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .required {
            color: #ef4444;
        }

        .form-input {
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

        .form-input:valid {
            border-color: #10b981;
        }

        .form-select {
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .form-select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .form-textarea {
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            resize: vertical;
            min-height: 120px;
        }

        .form-textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .file-upload {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 32px;
            border: 2px dashed #e5e7eb;
            border-radius: 12px;
            background: rgba(249, 250, 251, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: #3b82f6;
            background: rgba(239, 246, 255, 0.5);
        }

        .file-upload input {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .file-upload-text {
            text-align: center;
            color: #6b7280;
        }

        .file-upload-text strong {
            color: #3b82f6;
        }

        .uploaded-file {
            margin-top: 12px;
            padding: 12px 16px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border: 1px solid #10b981;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            color: #047857;
        }

        .remove-file {
            background: none;
            border: none;
            color: #ef4444;
            cursor: pointer;
            font-size: 16px;
        }

        .info-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(245, 158, 11, 0.2);
            margin-bottom: 32px;
        }

        .info-box h4 {
            color: #92400e;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-box p {
            color: #92400e;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .info-box ul {
            color: #92400e;
            font-size: 14px;
            margin-left: 20px;
        }

        .action-buttons {
            display: flex;
            gap: 16px;
            justify-content: flex-end;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
        } */

        /* .btn-secondary {
            background: rgba(107, 114, 128, 0.1);
            color: #374151;
            border: 2px solid #e5e7eb;
        }

        .btn-secondary:hover {
            background: rgba(107, 114, 128, 0.2);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:disabled {
            background: #9ca3af;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        } */

        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

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

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .validation-message {
            font-size: 12px;
            margin-top: 6px;
            color: #ef4444;
            display: none;
        }

        .form-input.invalid {
            border-color: #ef4444;
        }

        .form-input.invalid + .validation-message {
            display: block;
        }


        /* untuk modul pembayaran ------------------------------------------------------------------------------------------------- */

        
        .payment-body {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            margin-top: 32px;
        }

        .order-summary {
            background: rgba(248, 249, 250, 0.8);
            padding: 32px;
            border-radius: 20px;
            border: 1px solid rgba(229, 231, 235, 0.5);
            height: fit-content;
        }

        .section-title {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .domain-info {
            background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 24px;
            border: 1px solid rgba(3, 169, 244, 0.2);
        }

        .domain-name {
            font-size: 24px;
            font-weight: 800;
            color: #0277bd;
            margin-bottom: 8px;
        }

        .domain-type {
            font-size: 14px;
            color: #0288d1;
            background: rgba(255, 255, 255, 0.7);
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
        }

        .package-details {
            margin-bottom: 24px;
        }

        .package-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .item-info {
            flex: 1;
        }

        .item-name {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
        }

        .item-details {
            font-size: 13px;
            color: #6b7280;
        }

        .item-price {
            font-weight: 700;
            color: #059669;
            font-size: 16px;
        }

        .total-section {
            padding-top: 20px;
            border-top: 2px solid #3b82f6;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .total-final {
            font-size: 20px;
            font-weight: 800;
            color: #1f2937;
            border-top: 1px solid #e5e7eb;
            padding-top: 16px;
            margin-top: 16px;
        }

        .payment-form-section {
            background: rgba(255, 255, 255, 0.8);
            padding: 32px;
            border-radius: 20px;
            margin-bottom: 24px;
            border: 1px solid rgba(229, 231, 235, 0.5);
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .payment-method {
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .payment-method:hover {
            border-color: #3b82f6;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .payment-method.selected {
            border-color: #059669;
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
        }

        .method-icon {
            font-size: 32px;
            margin-bottom: 12px;
            display: block;
        }

        .method-name {
            font-size: 14px;
            font-weight: 600;
            color: #1f2937;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 16px;
        }

        .security-info {
            background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: #1e40af;
        }

        .action-buttons {
            display: flex;
            gap: 16px;
            justify-content: flex-end;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(229, 231, 235, 0.5);
        }

        .btn {
            /* padding: 16px 32px; */
            padding: 12px 24px;
            border: none;
            /* border-radius: 16px; */
            border-radius: 14px;
            /* font-weight: 700; */
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .btn-secondary {
            background: rgba(107, 114, 128, 0.1);
            color: #374151;
            border: 2px solid #e5e7eb;
        }

        .btn-secondary:hover {
            background: rgba(107, 114, 128, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
            font-size: 16px;
            /* padding: 18px 40px; */
            padding: 14px 30px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
        }

        .btn-primary:disabled {
            background: #9ca3af;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

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

        .ewallet-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .ewallet-option {
            padding: 16px 12px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .ewallet-option:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        .ewallet-option.selected {
            border-color: #059669;
            background: #f0fdf4;
        }

        .bank-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .bank-option {
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .bank-option:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        .bank-option.selected {
            border-color: #059669;
            background: #f0fdf4;
        }

        .promo-section {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 24px;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .promo-input {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .promo-input input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #d97706;
            border-radius: 8px;
            background: white;
        }

        .promo-btn {
            background: #d97706;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        .promo-btn:hover {
            background: #b45309;
        }

        .success-message {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            color: #065f46;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600;
        }

        .error-message {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            color: #991b1b;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                gap: 30px;
                padding: 20px;
            }
            
            .main-content {
                padding: 32px 24px;
            }

            .payment-body {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }