
:root {
    --primary-color: #ff620d;
    --primary-dark: #bf4909;
    --primary-light: #ff7a10;
    --primary-lightest: #ff9313;
    --secondary-color: #3dbbff;
    --tertiary-color: #ccff6e;
    --quaternary-color: #9effc0;
    --text-color: #e2e8f0;
    --bg-color: #0f172a;
    --heading-color: #ffffff;
    --link-color: #ff620d;
    --link-hover-color: #bf4909;
    --border-color: #334155;
    --card-bg: #1e293b;
    --card-border: #334155;
    --card-border-hover: #ff620d;
    --card-radius: 12px;
    --card-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    --card-shadow-hover: 0 10px 15px -3px rgba(0,0,0,0.1);
    --card-hover-bg: #2d3a4e;
    --button-radius: 40px;
    --border-radius: 12px;
    --button-text-color: #ffffff;
    --button-hover-bg: #bf4909;
    --button-hover-text: #ffffff;
    --navbar-bg: rgba(15,23,42,0.95);
    --navbar-text: #e2e8f0;
    --navbar-hover-text: #ff620d;
    --mobile-menu-bg: #1e293b;
    --mobile-menu-text: #e2e8f0;
    --mobile-menu-border: #334155;
    --footer-bg: #ff620d;
    --footer-text: #ffffff;
    --icon-color: #ff620d;
    --darkmode-icon: #fbbf24;
    --slider-text-color: #ffffff;
    --slider-overlay-color: rgba(0,0,0,0.7);
    --slider-nav-color: rgba(255,255,255,0.5);
    --slider-active-color: #ffffff;
    --filter-bg: #1e293b;
    --filter-active-bg: #ff620d;
    --filter-text: #e2e8f0;
    --filter-active-text: #ffffff;
    --pagination-bg: #1e293b;
    --pagination-active-bg: #ff620d;
    --pagination-text: #e2e8f0;
    --pagination-active-text: #ffffff;
    --pagination-hover-bg: #334155;
    --breadcrumb-text: #94a3b8;
    --breadcrumb-link: #ff620d;
    --breadcrumb-separator: #475569;
    --step-icon-bg: rgba(255,255,255,0.1);
    --equipment-nav-bg: #1e293b;
    --equipment-nav-hover: #ff620d;
    --equipment-nav-icon: #ff620d;
    --wa-bg: #25D366;
    --wa-hover-bg: #128C7E;
    --wa-icon: #ffffff;
    --faq-bg: #1e293b;
    --faq-header-bg: #0f172a;
    --faq-border: #334155;
    --faq-icon-color: #ff620d;
    --modal-bg: #1e293b;
    --modal-text: #e2e8f0;
    --modal-border: #334155;
    --modal-header-bg: #0f172a;
    --modal-radius: 16px;
    --section-bg-dark: #1e293b;
    --input-border: #475569;
    --input-focus: #ff620d;
    --success-color: #10b981;
    --error-color: #dc2626;
    --product-gap: 0.8rem;
    --card-padding: 1rem;
    --footer-text-opacity: 0.85;
    --footer-link-opacity: 0.85;
    --stat-label-opacity: 0.8;
    --badge-text-dark: #e2e8f0;
    --badge-bg-dark: #334155;
}

/* ============================================
   GLOBAL RESET (SEPERTI TAILWIND)
   ============================================ */
*, ::before, ::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Smooth scroll untuk anchor links */
html { 
    -webkit-text-size-adjust: 100%; 
    tab-size: 4;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-weight: 700; font-family: var(--font-display, var(--font-primary, system-ui)); }
a { color: var(--link-color); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--link-hover-color); }
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; }

/* ============================================
   DISPLAY & POSITION (LENGKAP)
   ============================================ */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ============================================
   FLEXBOX (LENGKAP)
   ============================================ */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-0 { gap: 0; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.shrink-0 { flex-shrink: 0; }
.shrink { flex-shrink: 1; }
.grow-0 { flex-grow: 0; }
.grow { flex-grow: 1; }

/* ============================================
   GRID (LENGKAP)
   ============================================ */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:flex { display: flex; }
    .sm\:hidden { display: none; }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ============================================
   SPACING (PADDING & MARGIN) - LENGKAP
   ============================================ */
.p-0 { padding: 0; }
.p-0\.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-0\.5 { padding-left: 0.125rem; padding-right: 0.125rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }

.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

/* ============================================
   TYPOGRAPHY (LENGKAP)
   ============================================ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-primary { color: var(--primary-color); }
.text-gray { color: var(--tertiary-color); }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   SIZING (WIDTH & HEIGHT)
   ============================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }

.min-h-screen { min-height: 100vh; }
.min-h-0 { min-height: 0; }

.max-w-full { max-width: 100%; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }

/* ============================================
   BORDER, RADIUS, SHADOW (LENGKAP)
   ============================================ */
.border { border: 1px solid var(--border-color); }
.border-0 { border: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }
.border-l { border-left: 1px solid var(--border-color); }
.border-r { border-right: 1px solid var(--border-color); }
.border-primary { border-color: var(--primary-color); }
.border-transparent { border-color: transparent; }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: var(--border-radius); }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: var(--card-shadow); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:shadow-md:hover { box-shadow: var(--card-shadow-hover); }

/* ============================================
   BACKGROUND & COLORS
   ============================================ */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-primary { background-color: var(--primary-color); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-transparent { background-color: transparent; }

/* ============================================
   CARD & PRODUCT (STYLING KHUSUS)
   ============================================ */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--card-shadow-hover);
    background-color: var(--card-hover-bg);
}

/* ============================================
   BUTTON & INTERACTIVE
   ============================================ */
.btn-primary, button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--button-text-color);
    border-radius: var(--button-radius);
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary:hover, button[type="submit"]:hover {
    background-color: var(--button-hover-bg);
    color: var(--button-hover-text);
    transform: translateY(-2px);
}

/* ============================================
   MODAL
   ============================================ */
.modal-container {
    background-color: var(--modal-bg);
    color: var(--modal-text);
    border: 1px solid var(--modal-border);
    border-radius: var(--modal-radius);
    overflow: hidden;
}
/* ============================================
   MOBILE FIX - TOMBOL & TOUCH TARGET
   ============================================ */
@media (max-width: 640px) {
    /* Semua tombol minimal 44px */
    button, 
    .btn, 
    .btn-primary, 
    .btn-order,
    a[class*="btn-"],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Tombol WA di produk card */
    .product-card-spotify .btn-order,
    .search-product-card .btn-order {
        min-height: 44px !important;
        padding: 0.6rem 0.75rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Modal fullscreen */
    .modal-premium-container {
        max-width: 100% !important;
        width: 100% !important;
        height: 100vh !important;
        border-radius: 0 !important;
        max-height: 100vh !important;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}
footer a { color: var(--footer-text); opacity: 0.8; transition: opacity 0.2s; }
footer a:hover { opacity: 1; }

/* ============================================
   SLIDER
   ============================================ */
.hero-slider-modern .slider-track-native {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.hero-slider-modern .slide-item {
    scroll-snap-align: start;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 640px) {
    .hidden-mobile { display: none; }
    .w-full-mobile { width: 100%; }
}
@media (min-width: 641px) and (max-width: 768px) {
    .hidden-tablet { display: none; }
}
@media (min-width: 769px) {
    .hidden-desktop { display: none; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.hover-scale:hover { transform: scale(1.05); }
.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ============================================
   OVERFLOW & SCROLL
   ============================================ */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================
   OBJECT FIT & POSITION
   ============================================ */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* ============================================
   OBJECT FIT & POSITION (LANJUTAN)
   ============================================ */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }
.object-scale-down { object-fit: scale-down; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-wait { cursor: wait; }
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }

/* ============================================
   OPACITY & VISIBILITY
   ============================================ */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ============================================
   TRANSFORM (EFFECTS)
   ============================================ */
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-2 { transform: translateY(0.5rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.rotate-0 { transform: rotate(0deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }

/* ============================================
   LIST STYLES
   ============================================ */
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }

/* ============================================
   TABLE STYLES
   ============================================ */
.table { display: table; }
.table-auto { table-layout: auto; }
.table-fixed { table-layout: fixed; }
.border-collapse { border-collapse: collapse; }
.border-separate { border-collapse: separate; }

/* ============================================
   ASPECT RATIO
   ============================================ */
.aspect-auto { aspect-ratio: auto; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-2 { aspect-ratio: 3 / 2; }

/* ============================================
   BACKDROP FILTER (GLASSMORPHISM)
   ============================================ */
.backdrop-blur-none { backdrop-filter: blur(0); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* ============================================
   DARK MODE (LENGKAP)
   ============================================ */
body.dark-mode {
    --bg-color: #0f172a;
    --text-color: #e2e8f0;
    --heading-color: #ffffff;
    --card-bg: #1e293b;
    --card-border: #334155;
    --card-hover-bg: #2d3a4e;
    --border-color: #334155;
    --mobile-menu-bg: #1e293b;
    --mobile-menu-text: #e2e8f0;
    --mobile-menu-border: #334155;
    --navbar-bg: rgba(30, 41, 59, 0.95);
    --navbar-text: #e2e8f0;
    --filter-bg: #1e293b;
    --pagination-bg: #1e293b;
    --pagination-hover-bg: #334155;
    --breadcrumb-text: #94a3b8;
    --modal-bg: #1e293b;
    --modal-text: #e2e8f0;
    --modal-border: #334155;
    --modal-header-bg: #0f172a;
    --darkmode-icon: #fbbf24;
    --faq-bg: #1e293b;
    --faq-header-bg: #0f172a;
    --faq-border: #334155;
    --faq-icon-color: #fbbf24;
    --step-icon-bg: rgba(255,255,255,0.1);
    --input-border: #475569;
    --section-bg-dark: #1e293b;
    --badge-text-dark: #e2e8f0;
    --badge-bg-dark: #334155;
}
body.dark-mode .product-card {
    background-color: var(--card-bg);
    border-color: var(--card-border);
}
body.dark-mode .product-card:hover {
    background-color: var(--card-hover-bg);
    border-color: var(--primary-color);
}
body.dark-mode .btn-primary {
    background-color: var(--primary-color);
}
body.dark-mode .modal-container {
    background-color: var(--modal-bg);
    color: var(--modal-text);
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}
body.dark-mode .text-white { color: #ffffff; }
body.dark-mode .text-black { color: #000000; }

/* ============================================
   SCROLLBAR CUSTOM (OPSIONAL)
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--border-color, #e2e8f0);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color, #0d9488);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark, #0f766e);
}

/* ============================================
   PRINT STYLES (UNTUK CETAK)
   ============================================ */
@media print {
    .no-print { display: none !important; }
    body { background-color: white; color: black; }
    a { text-decoration: underline; }
}

/* ============================================
   TOOLTIP (OPSIONAL)
   ============================================ */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}
[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--heading-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 100;
}
[data-tooltip]:hover:before {
    opacity: 1;
}

/* ============================================
   CONTAINER (LAYOUT)
   ============================================ */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ============================================
   FLEX UTILITIES (LANJUTAN)
   ============================================ */
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.order-first { order: -9999; }
.order-last { order: 9999; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }

/* ============================================
   GRID UTILITIES (LANJUTAN)
   ============================================ */
.gap-x-1 { column-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }

/* ============================================
   RING / OUTLINE (FOCUS STATE)
   ============================================ */
.ring-0 { box-shadow: none; }
.ring-1 { box-shadow: 0 0 0 1px var(--primary-color); }
.ring-2 { box-shadow: 0 0 0 2px var(--primary-color); }
.ring-primary { --tw-ring-color: var(--primary-color); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--primary-color); }
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color); }
.focus\:outline-none:focus { outline: none; }

/* ============================================
   DIVIDER (GARIS PEMISAH)
   ============================================ */
.divider-y > :not([hidden]) ~ :not([hidden]) {
    border-top-width: 1px;
    border-color: var(--border-color);
}
.divider-x > :not([hidden]) ~ :not([hidden]) {
    border-left-width: 1px;
    border-color: var(--border-color);
}

/* ============================================
   SCROLL SNAP (UNTUK SLIDER)
   ============================================ */
.snap-start { scroll-snap-align: start; }
.snap-end { scroll-snap-align: end; }
.snap-center { scroll-snap-align: center; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-proximity { scroll-snap-type: x proximity; }

/* ============================================
   SELECTION (HIGHLIGHT TEXT)
   ============================================ */
::selection {
    background-color: var(--primary-color);
    color: white;
}
::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

/* ============================================
   FOCUS VISIBLE (ACCESSIBILITY)
   ============================================ */
.focus-visible\:ring-2:focus-visible {
    box-shadow: 0 0 0 2px var(--primary-color);
}
.focus-visible\:outline-none:focus-visible {
    outline: none;
}

/* ============================================
   PLACEHOLDER TEXT
   ============================================ */
::placeholder {
    color: var(--tertiary-color);
    opacity: 0.6;
}
::-webkit-input-placeholder { color: var(--tertiary-color); opacity: 0.6; }
:-ms-input-placeholder { color: var(--tertiary-color); opacity: 0.6; }

/* ============================================
   MEDIA QUERIES RESPONSIF (LENGKAP)
   ============================================ */
@media (max-width: 640px) {
    .text-center-mobile { text-align: center; }
    .flex-col-mobile { flex-direction: column; }
    .w-full-mobile { width: 100%; }
    .hidden-mobile { display: none; }
    .block-mobile { display: block; }
    .gap-2-mobile { gap: 0.5rem; }
    .p-3-mobile { padding: 0.75rem; }
}
@media (min-width: 641px) and (max-width: 768px) {
    .text-center-tablet { text-align: center; }
    .hidden-tablet { display: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hidden-desktop { display: none; }
}
@media (min-width: 1025px) {
    .hidden-wide { display: none; }
}

/* ============================================
   GRID VARIATIONS (CUSTOM)
   ============================================ */
.grid-flow-row { grid-auto-flow: row; }
.grid-flow-col { grid-auto-flow: column; }
.grid-flow-dense { grid-auto-flow: dense; }

.auto-rows-auto { grid-auto-rows: auto; }
.auto-rows-min { grid-auto-rows: min-content; }
.auto-rows-max { grid-auto-rows: max-content; }

/* ============================================
   ORDER (UNTUK LAYOUT FLEXIBLE)
   ============================================ */
@media (min-width: 768px) {
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
    .md\:order-3 { order: 3; }
}

/* ============================================
   BLEND MODES (EFEK GAMBAR)
   ============================================ */
.mix-blend-multiply { mix-blend-mode: multiply; }
.mix-blend-screen { mix-blend-mode: screen; }
.mix-blend-overlay { mix-blend-mode: overlay; }

/* ============================================
   FILTER EFFECTS (GAMBAR)
   ============================================ */
.blur { filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-md { filter: blur(12px); }
.brightness-75 { filter: brightness(0.75); }
.brightness-90 { filter: brightness(0.9); }
.brightness-100 { filter: brightness(1); }
.brightness-110 { filter: brightness(1.1); }
.contrast-75 { filter: contrast(0.75); }
.contrast-100 { filter: contrast(1); }
.contrast-125 { filter: contrast(1.25); }

/* ============================================
   BOX SHADOW VARIANTS
   ============================================ */
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.05); }
.shadow-outline { box-shadow: 0 0 0 3px rgba(13,148,136,0.5); }
.shadow-none { box-shadow: none; }

/* ============================================
   BORDER WIDTH VARIANTS
   ============================================ */
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-8 { border-width: 8px; }

.border-t-0 { border-top-width: 0; }
.border-r-0 { border-right-width: 0; }
.border-b-0 { border-bottom-width: 0; }
.border-l-0 { border-left-width: 0; }
.border-t-2 { border-top-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }

/* ============================================
   BORDER STYLE VARIANTS
   ============================================ */
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }
.border-double { border-style: double; }
.border-none { border-style: none; }

/* ============================================
   BACKGROUND POSITION & SIZE
   ============================================ */
.bg-cover { background-size: cover; }
.bg-contain { background-size: contain; }
.bg-center { background-position: center; }
.bg-top { background-position: top; }
.bg-bottom { background-position: bottom; }
.bg-left { background-position: left; }
.bg-right { background-position: right; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-repeat { background-repeat: repeat; }

/* ============================================
   TRANSFORM ORIGIN
   ============================================ */
.origin-center { transform-origin: center; }
.origin-top { transform-origin: top; }
.origin-bottom { transform-origin: bottom; }
.origin-left { transform-origin: left; }
.origin-right { transform-origin: right; }

/* ============================================
   WHITE-SPACE & WORD BREAK
   ============================================ */
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-normal { word-break: normal; overflow-wrap: normal; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================
   VERTICAL ALIGN
   ============================================ */
.align-baseline { vertical-align: baseline; }
.align-top { vertical-align: top; }
.align-middle { vertical-align: middle; }
.align-bottom { vertical-align: bottom; }
.align-text-top { vertical-align: text-top; }
.align-text-bottom { vertical-align: text-bottom; }

/* ============================================
   FLOATS & CLEAR
   ============================================ */
.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }
.clear-none { clear: none; }

/* ============================================
   SCROLL BEHAVIOR
   ============================================ */
.scroll-auto { scroll-behavior: auto; }
.scroll-smooth { scroll-behavior: smooth; }

/* ============================================
   POINTER EVENTS
   ============================================ */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ============================================
   RESIZE (TEXTAREA)
   ============================================ */
.resize-none { resize: none; }
.resize-y { resize: vertical; }
.resize-x { resize: horizontal; }
.resize { resize: both; }

/* ============================================
   USER SELECT
   ============================================ */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* ============================================
   FILL & STROKE (UNTUK SVG)
   ============================================ */
.fill-current { fill: currentColor; }
.stroke-current { stroke: currentColor; }

/* ============================================
   SCROLL MARGIN & PADDING (UNTUK SLIDER)
   ============================================ */
.scroll-m-0 { scroll-margin: 0; }
.scroll-m-1 { scroll-margin: 0.25rem; }
.scroll-m-2 { scroll-margin: 0.5rem; }
.scroll-m-3 { scroll-margin: 0.75rem; }
.scroll-m-4 { scroll-margin: 1rem; }
.scroll-p-0 { scroll-padding: 0; }
.scroll-p-1 { scroll-padding: 0.25rem; }
.scroll-p-2 { scroll-padding: 0.5rem; }
.scroll-p-3 { scroll-padding: 0.75rem; }
.scroll-p-4 { scroll-padding: 1rem; }

/* ============================================
   ACCENT COLOR (UNTUK INPUT)
   ============================================ */
.accent-primary { accent-color: var(--primary-color); }
.accent-secondary { accent-color: var(--secondary-color); }

/* ============================================
   COLUMN COUNT (UNTUK LAYOUT TEKS)
   ============================================ */
.columns-1 { column-count: 1; }
.columns-2 { column-count: 2; }
.columns-3 { column-count: 3; }
.columns-auto { column-count: auto; }

/* ============================================
   ISOLATION (UNTUK Z-INDEX)
   ============================================ */
.isolate { isolation: isolate; }
.isolation-auto { isolation: auto; }

/* ============================================
   BACKFACE VISIBILITY (UNTUK 3D)
   ============================================ */
.backface-visible { backface-visibility: visible; }
.backface-hidden { backface-visibility: hidden; }

/* ============================================
   PERSPECTIVE (UNTUK 3D)
   ============================================ */
.perspective-none { perspective: none; }
.perspective-500 { perspective: 500px; }
.perspective-1000 { perspective: 1000px; }

/* ============================================
   TRANSFORM STYLE (3D)
   ============================================ */
.transform-style-flat { transform-style: flat; }
.transform-style-3d { transform-style: preserve-3d; }

/* ============================================
   WILL CHANGE (OPTIMASI ANIMASI)
   ============================================ */
.will-change-auto { will-change: auto; }
.will-change-transform { will-change: transform; }
.will-change-opacity { will-change: opacity; }
.will-change-scroll { will-change: scroll-position; }

/* ============================================
   CONTENT VISIBILITY (OPTIMASI RENDER)
   ============================================ */
.content-auto { content-visibility: auto; }
.content-hidden { content-visibility: hidden; }
.content-visible { content-visibility: visible; }

/* ============================================
   CONTAINER (UNTUK LAYOUT MODERN)
   ============================================ */
.contain-none { contain: none; }
.contain-strict { contain: strict; }
.contain-content { contain: content; }
.contain-size { contain: size; }
.contain-layout { contain: layout; }
.contain-paint { contain: paint; }

/* ============================================
   APP REGION (UNTUK APLIKASI DESKTOP)
   ============================================ */
.drag { -webkit-app-region: drag; }
.no-drag { -webkit-app-region: no-drag; }

/* ============================================
   OVERFLOW WRAP (FALLBACK)
   ============================================ */
.overflow-wrap-normal { overflow-wrap: normal; }
.overflow-wrap-break-word { overflow-wrap: break-word; }
.overflow-wrap-anywhere { overflow-wrap: anywhere; }

/* PERBAIKAN HORIZONTAL SCROLL MOBILE */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    .max-w-7xl, .max-w-5xl, .max-w-3xl, .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    iframe[src*="google.com/maps"] {
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }
    .hero-slider-modern .slider-track-native {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ============================================
   FOOTER STYLING - RAPI & KONSISTEN
   ============================================ */
footer .grid { text-align: left; }

@media (max-width: 640px) {
    footer .grid {
        text-align: left;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

footer h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
footer ul li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
footer ul li a { color: var(--footer-text, #ffffff); opacity: 0.7; transition: opacity 0.2s; display: inline-block; }
footer ul li a:hover { opacity: 1; }
footer ul li i { width: 1.25rem; text-align: center; }

@media (max-width: 640px) {
    footer ul li { justify-content: flex-start; }
}

footer .flex.gap-3 { justify-content: flex-start; }
footer .flex.gap-3 a {
    display: flex; align-items: center; justify-content: center;
    width: 2rem; height: 2rem; border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1); transition: all 0.2s;
}
footer .flex.gap-3 a:hover { background-color: var(--primary-light, #14b8a6); transform: translateY(-2px); }
footer .border-t { text-align: center; }

/* ============================================
   PRELOAD & LAZY LOAD OPTIMIZATION
   ============================================ */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s ease; }
img[loading="lazy"].loaded { opacity: 1; }
img:not([loading]) { opacity: 1; }

/* ============================================
   ANIMASI PREMIUM (TAMBAHAN)
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }

/* ============================================
   GLASSMORPHISM (EFEK KACA)
   ============================================ */
.glass { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); }
.dark-mode .glass { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); }

/* ============================================
   BUTTON VARIANTS (TAMBAHAN)
   ============================================ */
.btn-outline { background-color: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); transition: all 0.3s ease; }
.btn-outline:hover { background-color: var(--primary-color); color: white; transform: translateY(-2px); }
.btn-ghost { background-color: transparent; color: var(--primary-color); }
.btn-ghost:hover { background-color: rgba(13, 148, 136, 0.1); transform: translateY(-2px); }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.75rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ============================================
   CARD VARIANTS
   ============================================ */
.card-hover-glow:hover { box-shadow: 0 0 20px rgba(13, 148, 136, 0.3); transform: translateY(-8px); }
.card-border-gradient { border-image: linear-gradient(135deg, var(--primary-color), var(--primary-light)); border-image-slice: 1; }

/* ============================================
   BACK TO TOP BUTTON (PREMIUM)
   ============================================ */
.scroll-top {
    position: fixed; bottom: 80px; right: 20px; width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ============================================
   WHATSAPP BUTTON (FLOATING)
   ============================================ */
.wa-float {
    position: fixed; bottom: 20px; right: 20px; width: 55px; height: 55px;
    background-color: #25D366; color: white; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease; z-index: 99;
}
.wa-float:hover { transform: scale(1.08); background-color: #128C7E; }

/* ============================================
   BREADCRUMB PREMIUM
   ============================================ */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.875rem; padding: 0.75rem 1rem; background-color: transparent; margin-bottom: 1rem; }
.breadcrumb-item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-separator { color: var(--breadcrumb-separator, #94a3b8); }
.breadcrumb a { color: var(--breadcrumb-link, #0d9488); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary-dark, #0f766e); }
.breadcrumb-active { color: var(--breadcrumb-text, #64748b); }

/* ============================================
   PAGINATION PREMIUM
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin: 2rem 0; }
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.5rem;
    background-color: var(--pagination-bg, #f1f5f9); color: var(--pagination-text, #1e293b);
    border-radius: var(--border-radius, 12px); transition: all 0.2s;
}
.pagination a:hover { background-color: var(--pagination-hover-bg, #e2e8f0); transform: translateY(-2px); }
.pagination .active { background-color: var(--pagination-active-bg, #0d9488); color: var(--pagination-active-text, #ffffff); }

/* ============================================
   FILTER BUTTONS PREMIUM
   ============================================ */
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn { padding: 0.5rem 1rem; background-color: var(--filter-bg, #f1f5f9); color: var(--filter-text, #1e293b); border-radius: 40px; font-size: 0.875rem; transition: all 0.2s; cursor: pointer; }
.filter-btn:hover { background-color: var(--filter-active-bg, #0d9488); color: var(--filter-active-text, #ffffff); transform: translateY(-2px); }
.filter-btn.active { background-color: var(--filter-active-bg, #0d9488); color: var(--filter-active-text, #ffffff); }

/* ============================================
   PRODUCT GRID (OPTIMAL)
   ============================================ */
.product-grid { display: grid; gap: var(--product-gap, 0.75rem); }
.product-card { transition: all 0.3s cubic-bezier(0.2, 0, 0, 1); }
.product-card .product-image { overflow: hidden; }
.product-card .product-image img { transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }

/* ============================================
   MODAL PREMIUM
   ============================================ */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px); z-index: 9998; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { max-width: 500px; width: 90%; background-color: var(--modal-bg, #ffffff); border-radius: var(--modal-radius, 16px); overflow: hidden; transform: scale(0.9); transition: transform 0.3s; }
.modal-overlay.active .modal-content { transform: scale(1); }

/* ============================================
   NOTIFICATION / ALERT
   ============================================ */
.alert { padding: 1rem; border-radius: var(--border-radius, 12px); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.alert-success { background-color: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background-color: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background-color: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background-color: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ============================================
   TOOLTIP PREMIUM
   ============================================ */
.tooltip { position: relative; cursor: help; }
.tooltip::before {
    content: attr(data-tip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    background-color: var(--heading-color, #0f172a); color: white; padding: 0.25rem 0.5rem;
    border-radius: 0.25rem; font-size: 0.75rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.2s; z-index: 100;
}
.tooltip:hover::before { opacity: 1; visibility: visible; }

/* ============================================
   DROP SHADOW (PREMIUM)
   ============================================ */
.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1)); }
.drop-shadow-md { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.drop-shadow-lg { filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }
.hover\:drop-shadow-lg:hover { filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }

/* ============================================
   TEXT GRADIENT (PREMIUM)
   ============================================ */
.text-gradient { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gradient-white { background: linear-gradient(135deg, #ffffff, #e2e8f0); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================================
   BADGE / LABEL
   ============================================ */
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.5rem; font-size: 0.75rem; font-weight: 600; border-radius: 9999px; }
.badge-primary { background-color: var(--primary-color); color: white; }
.badge-secondary { background-color: var(--secondary-color, #2563eb); color: white; }
.badge-success { background-color: #10b981; color: white; }
.badge-warning { background-color: #f59e0b; color: white; }

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress { height: 0.5rem; background-color: var(--border-color, #e2e8f0); border-radius: 9999px; overflow: hidden; }
.progress-bar { height: 100%; background-color: var(--primary-color); border-radius: 9999px; transition: width 0.3s ease; }

/* ============================================
   CUSTOM CHECKBOX & RADIO
   ============================================ */
.custom-checkbox { width: 1.25rem; height: 1.25rem; accent-color: var(--primary-color); cursor: pointer; }
.custom-radio { width: 1.25rem; height: 1.25rem; accent-color: var(--primary-color); cursor: pointer; }

/* ============================================
   RESPONSIVE TABLES
   ============================================ */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive table { min-width: 600px; }
@media (max-width: 640px) { .table-responsive table { min-width: 500px; } }

/* ============================================
   CARD SLIDER (EQUIPMENT)
   ============================================ */
.card-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; }
.card-slider::-webkit-scrollbar { height: 4px; }
.card-slider .card { flex: 0 0 280px; scroll-snap-align: start; }
@media (max-width: 640px) { .card-slider .card { flex: 0 0 85%; } }

/* ============================================
   PROFESSIONAL BLOG DETAIL STYLES
   ============================================ */
.article-container { max-width: 800px; margin: 0 auto; }
.article-content { font-size: 1.125rem; line-height: 1.8; color: var(--text-color, #1f2937); }
.article-content h1 { font-size: 2.5rem; font-weight: 800; margin: 2rem 0 1rem; line-height: 1.2; }
.article-content h2 { font-size: 1.75rem; font-weight: 700; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border-color, #e5e7eb); }
.article-content h3 { font-size: 1.375rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.article-content h4 { font-size: 1.125rem; font-weight: 600; margin: 1.25rem 0 0.5rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content a { color: var(--primary-color, #0d9488); text-decoration: underline; text-underline-offset: 3px; transition: all 0.2s; }
.article-content a:hover { color: var(--primary-dark, #0f766e); text-decoration-thickness: 2px; }
.article-content ul, .article-content ol { margin: 1.25rem 0; padding-left: 1.75rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content li::marker { color: var(--primary-color, #0d9488); }
.article-content blockquote { margin: 1.75rem 0; padding: 1rem 1.5rem; border-left: 4px solid var(--primary-color, #0d9488); background-color: var(--section-bg-dark, #f3f4f6); border-radius: 0 12px 12px 0; font-style: italic; color: var(--text-color, #4b5563); }
.article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.article-content figure { margin: 1.5rem 0; }
.article-content figcaption { text-align: center; font-size: 0.875rem; color: var(--text-color, #6b7280); margin-top: 0.5rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9375rem; }
.article-content th, .article-content td { border: 1px solid var(--border-color, #e5e7eb); padding: 0.75rem; text-align: left; }
.article-content th { background-color: var(--section-bg-dark, #f3f4f6); font-weight: 600; }
.article-content code { background-color: var(--section-bg-dark, #f3f4f6); padding: 0.2rem 0.4rem; border-radius: 6px; font-size: 0.875em; font-family: 'SF Mono', Monaco, monospace; }
.article-content pre { background-color: #1e293b; color: #e2e8f0; padding: 1rem; border-radius: 12px; overflow-x: auto; margin: 1.5rem 0; }
.article-content pre code { background: none; padding: 0; color: inherit; }

.reading-progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: linear-gradient(90deg, var(--primary-color, #0d9488), var(--primary-light, #14b8a6)); z-index: 1001; transition: width 0.1s ease; }
.floating-share { position: fixed; left: 24px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 12px; }
.floating-share a, .floating-share button { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.1); background-color: #ffffff; color: #374151; cursor: pointer; border: none; }
.floating-share a:hover, .floating-share button:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

@media (max-width: 1024px) { .floating-share { display: none; } }

.table-of-contents { background-color: var(--section-bg-dark, #f3f4f6); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; border-left: 4px solid var(--primary-color, #0d9488); }
.table-of-contents h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; color: var(--heading-color, #1f2937); }
.table-of-contents ul { list-style: none; padding-left: 0; margin: 0; }
.table-of-contents li { margin-bottom: 0.5rem; }
.table-of-contents a { font-size: 0.875rem; color: var(--text-color, #4b5563); text-decoration: none; transition: all 0.2s; display: inline-block; }
.table-of-contents a:hover { color: var(--primary-color, #0d9488); transform: translateX(4px); }

.author-box { background-color: var(--section-bg-dark, #f3f4f6); border-radius: 20px; padding: 1.5rem; margin: 2rem 0; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-color, #0d9488); }
.author-info { flex: 1; }
.author-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--heading-color, #1f2937); }
.author-bio { font-size: 0.875rem; color: var(--text-color, #6b7280); margin-bottom: 0.5rem; }
.author-social { display: flex; gap: 1rem; }
.author-social a { color: var(--text-color, #9ca3af); transition: color 0.2s; }
.author-social a:hover { color: var(--primary-color, #0d9488); }

@media (max-width: 640px) { .author-box { flex-direction: column; text-align: center; } }

.related-card { transition: all 0.3s ease; overflow: hidden; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.related-card .related-image { overflow: hidden; }
.related-card .related-image img { transition: transform 0.5s ease; width: 100%; height: 160px; object-fit: cover; }
.related-card:hover .related-image img { transform: scale(1.05); }

.meta-info-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color, #e5e7eb); }
.category-badge { display: inline-block; background-color: var(--primary-lightest, #99f6e4); color: var(--primary-dark, #0f766e); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem; transition: all 0.2s; }
.category-badge:hover { background-color: var(--primary-light, #14b8a6); color: white; }

.share-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; padding-top: 1rem; border-top: 1px solid var(--border-color, #e5e7eb); justify-content: center; }
.share-bar a, .share-bar button { padding: 0.5rem 1rem; border-radius: 40px; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; cursor: pointer; border: none; }
.share-bar a:hover, .share-bar button:hover { transform: translateY(-2px); opacity: 0.9; }

.nav-article { background-color: var(--card-bg, #ffffff); border: 1px solid var(--card-border, #e5e7eb); border-radius: 12px; padding: 1rem; transition: all 0.2s; }
.nav-article:hover { background-color: var(--card-hover-bg, #f9fafb); border-color: var(--primary-color, #0d9488); }
.back-to-blog { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; transition: all 0.2s; }
.back-to-blog:hover { transform: translateX(-4px); }

@media (max-width: 768px) {
    .article-content { font-size: 1rem; line-height: 1.7; }
    .article-content h1 { font-size: 1.75rem; }
    .article-content h2 { font-size: 1.375rem; }
    .article-content h3 { font-size: 1.125rem; }
    .table-of-contents { margin: 1.5rem 0; padding: 1rem; }
    .meta-info-bar { gap: 0.75rem; font-size: 0.75rem; }
}

body.dark-mode .article-content blockquote { background-color: #1e293b; }
body.dark-mode .table-of-contents { background-color: #1e293b; }
body.dark-mode .author-box { background-color: #1e293b; }
body.dark-mode .nav-article:hover { background-color: #1e293b; }
body.dark-mode .floating-share a, body.dark-mode .floating-share button { background-color: #1e293b; color: #e2e8f0; }
body.dark-mode .floating-share a:hover, body.dark-mode .floating-share button:hover { background-color: #334155; }

@media print {
    .floating-share, .reading-progress-bar, .related-card, .author-box, .share-bar, .back-to-blog, footer, .navbar { display: none !important; }
    .article-content { font-size: 12pt; line-height: 1.5; color: black; }
    .article-content a { text-decoration: none; color: black; }
    .article-content img { page-break-inside: avoid; }
    .article-content h2, .article-content h3 { page-break-after: avoid; }
}

/* ============================================ */
/* FINAL EFFECT: FADE UP BOUNCE SMOOTH */
/* 1 HALAMAN = 1 KESATUAN */
/* ============================================ */

/* Seluruh halaman sebagai satu kesatuan */
.page-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1.8, 0.6, 1);
}

.page-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger untuk elemen di dalam halaman (muncul bergantian halus) */
.page-reveal .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1.8, 0.6, 1);
}

.page-reveal.revealed .stagger-item:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.page-reveal.revealed .stagger-item:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
@media (max-width: 480px) {
    
    /* --- NAVBAR --- */
    .navbar .px-4 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    .navbar .font-bold.text-lg {
        font-size: 0.95rem !important;
    }
    
    /* --- MOBILE MENU --- */
    #mobileMenu .py-2 {
        max-height: 70vh !important;
        overflow-y: auto !important;
    }
    
    /* --- SLIDER --- */
    .hero-slider-clean .slider-content-wrapper {
        padding: 1rem 0.75rem !important;
    }
    .hero-slider-clean .slide-content-item h2 {
        font-size: 1.1rem !important;
    }
    .hero-slider-clean .slide-content-item p {
        font-size: 0.75rem !important;
    }
    
    /* 🔥 SLIDER DOTS - GARIS PANJANG (MOBILE) */
    .hero-slider-clean .slider-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 10;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
    }
    
    .hero-slider-clean .slider-dots .dot {
        /* 🔥 JADI GARIS PANJANG */
        width: 20px !important;
        height: 3px !important;
        border-radius: 4px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        cursor: pointer;
        transition: all 0.4s ease !important;
        border: none !important;
        flex-shrink: 0 !important;
        padding: 0 !important;
        /* 🔥 HAPUS BENTUK BULAT */
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
    }
    
    .hero-slider-clean .slider-dots .dot.active {
        /* 🔥 AKTIF: GARIS MELEBAR */
        width: 40px !important;
        height: 3px !important;
        border-radius: 4px !important;
        background: #ffffff !important;
        transform: none !important;
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.25) !important;
        border: none !important;
    }
    
    .hero-slider-clean .slider-dots .dot:hover {
        background: rgba(255, 255, 255, 0.5) !important;
    }
    
    /* --- PRODUCT CARD --- */
    .product-card-spotify .card-body h3 {
        font-size: 0.7rem !important;
    }
    .product-card-spotify .card-body .price {
        font-size: 0.65rem !important;
    }
    .product-card-spotify .btn-order {
        padding: 0.6rem 0.5rem !important;
        font-size: 0.6rem !important;
        min-height: 44px !important;
    }
    
    /* --- CTA BANNER --- */
    .cta-spotify {
        padding: 1.5rem 1rem !important;
    }
    .cta-spotify h2 {
        font-size: 1.25rem !important;
    }
    .cta-spotify p {
        font-size: 0.85rem !important;
    }
    .cta-spotify .btn-cta {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.85rem !important;
        min-height: 44px !important;
    }
    
    /* --- FAQ --- */
    .faq-accordion-item .faq-accordion-question {
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
    }
    .faq-accordion-item .faq-accordion-answer {
        font-size: 0.9rem !important;
        padding: 0 1rem 0.75rem 1rem !important;
    }
    
    /* --- FILTER KATEGORI --- */
    .filter-group .filter-btn {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.7rem !important;
        white-space: nowrap !important;
    }
    
    /* --- BLOG CARD --- */
    .news-card .card-image img {
        height: 120px !important;
    }
    .news-card .card-body h2 {
        font-size: 0.85rem !important;
    }
    .news-card .card-body p {
        font-size: 0.7rem !important;
    }
    
    /* --- FLOATING SHARE (hidden di mobile) --- */
    .floating-share {
        display: none !important;
    }
    
    /* --- TABLE OF CONTENTS --- */
    .table-of-contents {
        padding: 12px 16px !important;
        margin-bottom: 20px !important;
    }
    .table-of-contents a {
        font-size: 0.8rem !important;
    }
    
    /* --- FOOTER --- */
    footer .py-10 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    footer .grid {
        gap: 1.5rem !important;
    }
    footer h3 {
        font-size: 0.9rem !important;
    }
    footer ul li {
        font-size: 0.75rem !important;
    }
    
    /* --- MODAL (fullscreen di mobile) --- */
    .modal-premium-container {
        max-width: 100% !important;
        width: 100% !important;
        height: 100vh !important;
        border-radius: 0 !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
    }
    .modal-premium-image img {
        height: 200px !important;
    }
    .modal-premium-content {
        padding: 16px !important;
    }
    
    /* --- SEMUA TOMBOL MIN 44px --- */
    button,
    .btn,
    .btn-primary,
    .btn-order,
    a[class*="btn-"],
    input[type="submit"],
    input[type="button"],
    .product-card-spotify .btn-order,
    .search-product-card .btn-order {
        min-height: 44px !important;
        padding: 0.6rem 0.75rem !important;
        font-size: 0.7rem !important;
    }
}
/* ============================================
   IMPROVEMENT 1: SMOOTH TRANSITIONS (GLOBAL)
   ============================================ */

/* Semua interaksi pakai easing curve premium */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Transisi halus untuk semua elemen interaktif */
a, 
button, 
.btn-primary, 
.product-card, 
.filter-btn, 
.pagination a,
.navbar, 
.modal-overlay, 
[class*="transition"] {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Hover effect dengan easing yang lebih smooth */
.product-card:hover,
.btn-primary:hover,
.filter-btn:hover,
.pagination a:hover {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Scale effect dengan bounce halus */
.btn-primary:active,
.product-card:active,
.filter-btn:active {
    transition: all 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    transform: scale(0.96) !important;
}

/* ============================================
   IMPROVEMENT 2: BETTER FOCUS STATES
   ============================================ */

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

/* Khusus untuk button dan link */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

/* Input focus dengan shadow (tanpa outline berlebihan) */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px var(--primary-color)30 !important;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Focus untuk kartu produk (aksesibilitas) */
.product-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

/* Focus untuk tombol navigasi */
.navbar a:focus-visible,
.footer a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Skip to content (untuk aksesibilitas keyboard) */
.skip-to-content {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--button-radius);
    z-index: 99999;
    font-weight: 600;
    transition: top 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.skip-to-content:focus {
    top: 20px;
}

/* Dark mode support untuk focus states */
body.dark-mode :focus-visible {
    outline-color: var(--primary-light, #14b8a6);
}

body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
    border-color: var(--primary-light, #14b8a6) !important;
    box-shadow: 0 0 0 3px var(--primary-light)40 !important;
}
/* ============================================
   IMPROVEMENT 3: SKELETON LOADING
   ============================================ */

/* Skeleton base */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--border-color, #e5e7eb) 25%,
        var(--card-hover-bg, #f3f4f6) 50%,
        var(--border-color, #e5e7eb) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--card-radius, 12px);
}

/* Skeleton variants */
.skeleton-text {
    height: 0.8em;
    width: 100%;
    margin-bottom: 0.5em;
    border-radius: 4px;
}

.skeleton-text:last-child {
    width: 70%;
    margin-bottom: 0;
}

.skeleton-title {
    height: 1.2em;
    width: 80%;
    margin-bottom: 0.75em;
    border-radius: 4px;
}

.skeleton-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: var(--card-radius, 12px);
}

.skeleton-circle {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.skeleton-button {
    height: 44px;
    width: 120px;
    border-radius: var(--button-radius, 40px);
}

/* Skeleton animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   IMPROVEMENT 4: FLOATING LABELS (FORM)
   ============================================ */

/* Container */
.form-floating {
    position: relative;
    margin-bottom: 1.25rem;
}

/* Input & Textarea */
.form-floating input,
.form-floating textarea {
    width: 100%;
    padding: 1.25rem 0.75rem 0.5rem 0.75rem;
    border: 2px solid var(--input-border, #d1d5db);
    border-radius: var(--border-radius, 12px);
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--card-bg, #ffffff);
    color: var(--text-color, #1f2937);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-floating textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 1.5rem;
}

/* Label */
.form-floating label {
    position: absolute;
    top: 0;
    left: 0.75rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-color, #6b7280);
    opacity: 0.7;
    pointer-events: none;
    transform-origin: left center;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 4px;
}

/* Floating state - when input has value OR focused */
.form-floating input:not(:placeholder-shown) + label,
.form-floating input:focus + label,
.form-floating textarea:not(:placeholder-shown) + label,
.form-floating textarea:focus + label {
    top: 0.25rem;
    left: 0.75rem;
    font-size: 0.7rem;
    opacity: 0.8;
    height: auto;
    background-color: var(--card-bg, #ffffff);
    padding: 0 6px;
    border-radius: 4px;
    color: var(--primary-color, #0f766e);
}

/* Focus state for input */
.form-floating input:focus,
.form-floating textarea:focus {
    border-color: var(--primary-color, #0f766e);
    box-shadow: 0 0 0 3px var(--primary-color)30;
    outline: none;
}

/* Error state */
.form-floating.has-error input,
.form-floating.has-error textarea {
    border-color: var(--error-color, #dc2626);
}

.form-floating.has-error label {
    color: var(--error-color, #dc2626);
}

/* Success state */
.form-floating.has-success input,
.form-floating.has-success textarea {
    border-color: var(--success-color, #10b981);
}

/* ============================================
   IMPROVEMENT 5: BOTTOM NAV HAPTIC FEEDBACK
   ============================================ */

/* Bottom nav item */
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.55rem;
    padding: 4px 8px;
    min-height: 48px;
    min-width: 48px;
    gap: 1px;
    position: relative;
    color: var(--text-color, #6b7280);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
}

/* Haptic feedback - scale down on press */
.bottom-nav-item:active {
    transform: scale(0.88);
    transition: transform 0.1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active state */
.bottom-nav-item.active {
    color: var(--primary-color, #0f766e);
}

/* Active indicator - garis di atas */
.bottom-nav-item .nav-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 4px;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-nav-item.active .nav-indicator {
    background: var(--primary-color, #0f766e);
    width: 28px;
}

/* Icon styling */
.bottom-nav-item i {
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bottom-nav-item.active i {
    transform: scale(1.05);
}

/* Label styling */
.bottom-nav-item span {
    font-size: 0.55rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bottom-nav-item.active span {
    font-weight: 600;
}

/* Hover effect (desktop) */
@media (hover: hover) {
    .bottom-nav-item:hover {
        color: var(--primary-color, #0f766e);
        transform: translateY(-2px);
    }
    
    .bottom-nav-item.active:hover {
        transform: translateY(-2px);
    }
}

/* Dark mode support */
body.dark-mode .bottom-nav-item {
    color: var(--text-color, #94a3b8);
}

body.dark-mode .bottom-nav-item.active {
    color: var(--primary-light, #14b8a6);
}

body.dark-mode .bottom-nav-item.active .nav-indicator {
    background: var(--primary-light, #14b8a6);
}

/* Mobile: haptic feedback lebih terasa */
@media (pointer: coarse) {
    .bottom-nav-item:active {
        transform: scale(0.85);
    }
}
/* ============================================
   IMPROVEMENT 6: MOBILE FONT OPTIMIZATION
   ============================================ */

/* Base: Pastikan body text 16px di mobile */
@media (max-width: 640px) {
    /* --- BODY & BASE --- */
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* --- HEADINGS (lebih kecil di mobile) --- */
    h1, .h1, .page-title, .hero-title {
        font-size: 1.375rem !important; /* 22px */
        line-height: 1.3 !important;
    }

    h2, .h2, .section-title {
        font-size: 1.125rem !important; /* 18px */
        line-height: 1.35 !important;
    }

    h3, .h3, .card-title {
        font-size: 1rem !important; /* 16px */
        line-height: 1.4 !important;
    }

    h4, .h4 {
        font-size: 0.9375rem !important; /* 15px */
        line-height: 1.4 !important;
    }

    h5, h6 {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.4 !important;
    }

    /* --- PRODUCT CARD --- */
    .product-card-spotify .card-body h3,
    .product-card .card-body h3,
    .product-title {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.3 !important;
    }

    .product-card-spotify .card-body .price,
    .product-card .card-body .price,
    .product-price {
        font-size: 0.875rem !important; /* 14px */
        font-weight: 700 !important;
    }

    /* --- BUTTONS --- */
    .btn, .btn-primary, .btn-order, button[type="submit"],
    a[class*="btn-"], .btn-slide {
        font-size: 0.875rem !important; /* 14px */
        padding: 0.6rem 1rem !important;
        min-height: 44px !important;
    }

    /* Small buttons */
    .btn-sm, .btn-small {
        font-size: 0.75rem !important; /* 12px */
        padding: 0.4rem 0.75rem !important;
        min-height: 36px !important;
    }

    /* --- NAVBAR --- */
    .navbar .font-bold {
        font-size: 0.95rem !important;
    }

    .navbar a, .navbar .menu-link {
        font-size: 0.875rem !important; /* 14px */
    }

    /* --- MOBILE MENU --- */
    #mobileMenu a, #mobileMenu .menu-item {
        font-size: 0.9375rem !important; /* 15px - lebih besar untuk touch target */
        padding: 0.75rem 1rem !important;
    }

    /* --- BLOG --- */
    .blog-title, .article-title, .post-title {
        font-size: 1.125rem !important; /* 18px */
        line-height: 1.35 !important;
    }

    .blog-excerpt, .post-excerpt {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.6 !important;
    }

    .blog-meta, .post-meta {
        font-size: 0.75rem !important; /* 12px */
    }

    /* --- BLOG DETAIL --- */
    .article-content {
        font-size: 1rem !important; /* 16px */
        line-height: 1.75 !important;
    }

    .article-content h2 {
        font-size: 1.25rem !important; /* 20px */
    }

    .article-content h3 {
        font-size: 1.0625rem !important; /* 17px */
    }

    /* --- FORM --- */
    input, textarea, select {
        font-size: 16px !important; /* Mencegah zoom di iOS */
        padding: 0.75rem !important;
    }

    .form-floating input,
    .form-floating textarea {
        font-size: 16px !important;
        padding: 1.25rem 0.75rem 0.5rem 0.75rem !important;
    }

    /* --- FOOTER --- */
    footer h3 {
        font-size: 1rem !important; /* 16px */
    }

    footer p, footer li, footer a {
        font-size: 0.875rem !important; /* 14px */
    }

    footer .text-xs {
        font-size: 0.75rem !important; /* 12px */
    }

    /* --- BOTTOM NAV --- */
    .bottom-nav-item span {
        font-size: 0.55rem !important; /* 8.8px - tetap kecil karena di bawah */
    }

    .bottom-nav-item i {
        font-size: 1.125rem !important; /* 18px */
    }

    /* --- BREADCRUMB --- */
    .breadcrumb, .breadcrumb-item, nav[aria-label="Breadcrumb"] {
        font-size: 0.75rem !important; /* 12px */
    }

    /* --- KATEGORI CHIPS --- */
    .kategori-item .kategori-name {
        font-size: 0.65rem !important; /* 10.4px */
    }

    .filter-btn, .category-chip {
        font-size: 0.7rem !important; /* 11.2px */
        padding: 0.3rem 0.7rem !important;
    }

    /* --- TESTIMONI --- */
    .testimoni-card-spotify .quote {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.6 !important;
    }

    .testimoni-card-spotify strong {
        font-size: 0.875rem !important;
    }

    /* --- FAQ --- */
    .faq-accordion-item .faq-accordion-question {
        font-size: 0.9375rem !important; /* 15px */
        padding: 0.75rem 1rem !important;
    }

    .faq-accordion-item .faq-accordion-answer {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.6 !important;
    }

    /* --- PRICE DISPLAY (Produk Detail) --- */
    .product-detail-price {
        font-size: 1.5rem !important; /* 24px */
    }

    .product-detail-title {
        font-size: 1.25rem !important; /* 20px */
    }

    /* --- CTA BANNER --- */
    .cta-spotify h2 {
        font-size: 1.25rem !important; /* 20px */
    }

    .cta-spotify p {
        font-size: 0.875rem !important; /* 14px */
    }

    /* --- STATS --- */
    .stats-grid .number {
        font-size: 1.75rem !important; /* 28px */
    }

    .stats-grid .label {
        font-size: 0.8rem !important; /* 12.8px */
    }

    /* --- STEP / CARA PEMESANAN --- */
    .feature-card h4 {
        font-size: 0.8125rem !important; /* 13px */
    }

    .feature-card p {
        font-size: 0.75rem !important; /* 12px */
    }
}

/* ============================================
   IMPROVEMENT 7: BETTER TOUCH TARGETS (MOBILE)
   ============================================ */

/* Semua elemen interaktif minimal 44px (Apple HIG) */
@media (pointer: coarse) {
    button,
    .btn,
    .btn-primary,
    .btn-order,
    a[class*="btn-"],
    input[type="submit"],
    input[type="button"],
    .bottom-nav-item,
    .filter-btn,
    .category-chip,
    .faq-accordion-item,
    .kategori-item,
    .product-card-spotify,
    .product-card,
    .nav-link,
    .menu-item,
    .pagination a {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Spacing antar elemen touch */
    .flex.gap-2 > *,
    .flex.gap-3 > *,
    .gap-2 > *,
    .gap-3 > * {
        margin-bottom: 4px;
    }

    /* Scroll hint lebih besar */
    .scroll-hint {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.75rem !important;
    }
}
/* ============================================
   PREMIUM TYPOGRAPHY & SPACING (DINAMIS)
   ============================================ */
:root {
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    
    --text-xs: clamp(0.75rem, 0.7vw + 0.5rem, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8vw + 0.6rem, 1rem);
    --text-base: clamp(1rem, 1vw + 0.7rem, 1.125rem);
    --text-lg: clamp(1.125rem, 1.2vw + 0.8rem, 1.25rem);
    --text-xl: clamp(1.25rem, 1.5vw + 0.9rem, 1.5rem);
    --text-2xl: clamp(1.5rem, 2vw + 1rem, 2rem);
    --text-3xl: clamp(2rem, 3vw + 1.2rem, 2.75rem);
    --text-4xl: clamp(2.5rem, 4vw + 1.5rem, 3.5rem);
    
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-2xl: 0 24px 64px rgba(0,0,0,0.20);
    
    --transition-fast: 150ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 500ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   PREMIUM UTILITY CLASSES
   ============================================ */

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient-warm {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient-cool {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hover Lift */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.hover-lift-lg:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Scale on Hover */
.hover-scale {
    transition: transform var(--transition-base);
}
.hover-scale:hover {
    transform: scale(1.03);
}
.hover-scale-lg:hover {
    transform: scale(1.06);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp var(--transition-slow) forwards;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}
.stagger-children.visible > *:nth-child(1) { animation: slideUp 0.6s 0.05s forwards; }
.stagger-children.visible > *:nth-child(2) { animation: slideUp 0.6s 0.1s forwards; }
.stagger-children.visible > *:nth-child(3) { animation: slideUp 0.6s 0.15s forwards; }
.stagger-children.visible > *:nth-child(4) { animation: slideUp 0.6s 0.2s forwards; }
.stagger-children.visible > *:nth-child(5) { animation: slideUp 0.6s 0.25s forwards; }
.stagger-children.visible > *:nth-child(6) { animation: slideUp 0.6s 0.3s forwards; }

/* Premium Card */
.card-premium {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    overflow: hidden;
}
.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Premium Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--button-text-color);
    border-radius: var(--button-radius);
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-color)40;
}
.btn-premium:active {
    transform: scale(0.96);
}
.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-premium-outline:hover {
    background: var(--primary-color);
    color: var(--button-text-color);
}

/* ============================================
   MOBILE FIRST - PREMIUM TOUCH
   ============================================ */

/* Touch Target Minimal 44px (Apple HIG) */
@media (pointer: coarse) {
    button, 
    .btn, 
    .btn-primary, 
    .btn-order,
    .btn-premium,
    a[class*="btn-"],
    .bottom-nav-item,
    .filter-btn,
    .category-chip,
    .faq-accordion-item,
    .product-card-spotify,
    .kategori-item {
        min-height: 44px !important;
        min-width: 44px !important;
    }
}

/* Haptic Feedback untuk Mobile */
@media (pointer: coarse) {
    .product-card-spotify:active,
    .btn-primary:active,
    .btn-premium:active,
    .bottom-nav-item:active {
        transform: scale(0.95) !important;
        transition: transform 0.1s !important;
    }
}

/* Smooth Scroll untuk Mobile */
@media (max-width: 768px) {
    .product-scroll,
    .testimoni-scroll,
    .equipment-scroll,
    .kategori-scroll {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 0.5rem;
    }
    .product-scroll .product-card-spotify,
    .testimoni-scroll .testimoni-card-spotify,
    .equipment-scroll .equipment-card,
    .kategori-scroll .kategori-item {
        scroll-snap-align: start;
    }
}

/* Mobile Bottom Sheet Style */
@media (max-width: 640px) {
    .modal-premium-container {
        border-radius: 20px 20px 0 0 !important;
        max-height: 92vh !important;
        margin-top: auto !important;
        align-self: flex-end !important;
    }
    .modal-premium-image img {
        height: 180px !important;
    }
}

/* Swipe Hint */
.swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-color);
    opacity: 0.4;
    animation: swipeHint 2s ease-in-out infinite;
}
@keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(8px); opacity: 0.8; }
}

/* Ripple Effect Container */
.ripple-container {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}
