/* ============================================
   Acaretech Indonesia - Custom Styles
   Website Alat Kesehatan
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* --- Primary Palette --- */
    --primary: #0061FF;
    --primary-light: #3B82F6;
    --primary-dark: #0050D4;
    --primary-soft: #60A5FA;

    /* --- Semantic Colors --- */
    --secondary: #0061FF;
    --secondary-light: #3B82F6;
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --danger: #ef4444;

    /* --- Neutrals --- */
    --dark: #0F2A4A;
    --dark-2: #1e293b;
    --navy: #0F2A4A;
    --ink: #0B1F3A;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --light: #F6F8FF;
    --white: #ffffff;

    /* --- Gradients --- */
    --gradient-primary: linear-gradient(180deg, #0061FF 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6, #60A5FA);
    --gradient-hero: linear-gradient(180deg, #0061FF 0%, #3B82F6 100%);

    /* --- Shadows (blue-tinted) --- */
    --shadow-sm: 0 1px 3px rgba(0, 97, 255, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 97, 255, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 97, 255, 0.10);
    --shadow-xl: 0 20px 50px rgba(0, 97, 255, 0.15);
    --shadow-blue: 0 8px 25px rgba(0, 97, 255, 0.20);

    /* --- Radii (bigger for modern feel) --- */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
}

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility Classes ---------- */
.text-primary { color: var(--primary) !important; }
.text-primary-light { color: var(--primary-light) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-gray { color: var(--gray-500) !important; }
.text-dark { color: var(--dark) !important; }
.fw-600 { font-weight: 600 !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-light-custom { background-color: var(--light) !important; }
.bg-dark-custom { background-color: var(--dark) !important; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.section-padding {
    padding: 96px 0;
}

.section-padding-sm {
    padding: 72px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: #dbeafe;
    color: var(--primary);
}

.badge-secondary {
    background: #e0e7ff;
    color: var(--primary);
}

.badge-accent {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 97, 255, 0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 97, 255, 0.35);
    color: var(--white) !important;
}

.btn-outline-custom {
    background: var(--white);
    color: var(--navy) !important;
    border: 2px solid var(--gray-200);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: rgba(0, 97, 255, 0.4);
    transform: translateY(-2px);
    color: var(--navy) !important;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white) !important;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white) !important;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar-custom {
    background: transparent;
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--gray-100);
}

.navbar-custom .navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary);
    background: transparent;
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-custom .navbar-toggler-icon {
    filter: none;
}

.navbar-custom .btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar-custom .btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.30);
}

/* Inner pages navbar (same style, just ensures solid bg) */
.navbar-inner {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

/* Dropdown on hover (desktop) */
@media (min-width: 992px) {
    .navbar-custom .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: dropdownFade 0.25s ease;
    }
    .navbar-custom .nav-item.dropdown .dropdown-toggle::after {
        transition: transform 0.25s ease;
    }
    .navbar-custom .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown menu styling */
.navbar-custom .dropdown-menu {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 180px;
    margin-top: 0;
}

.navbar-custom .dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.navbar-custom .dropdown-item:hover {
    background: rgba(0, 97, 255, 0.06);
    color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: #f6f8ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: rgba(0, 97, 255, 0.12);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.hero-stat p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ---------- Inner Page Spacing ---------- */
.navbar-inner ~ main {
    padding-top: 80px;
}

/* ---------- Cards ---------- */
.card-custom {
    background: var(--light);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card-icon.bg-blue { background: rgba(0, 97, 255, 0.1); color: var(--primary); }
.card-icon.bg-green { background: rgba(59, 130, 246, 0.08); color: var(--primary-light); }
.card-icon.bg-amber { background: rgba(96, 165, 250, 0.12); color: var(--primary); }
.card-icon.bg-red { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.card-icon.bg-gradient { background: var(--gradient-primary); color: var(--white); }

/* ---------- Product Card ---------- */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card .product-actions .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
}

.product-card .product-actions .action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card .product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-category {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card .product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-title a {
    color: inherit;
}

.product-card .product-title a:hover {
    color: var(--primary);
}

.product-card .product-brand {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.product-card .product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.product-card .product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card .product-price .price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* ---------- Product Card Link (Clickable Card Wrapper) ---------- */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-link:hover {
    color: inherit;
}

/* ---------- Discount Badge ---------- */
.badge-discount {
    background: var(--danger) !important;
    color: var(--white) !important;
    margin-top: 6px;
}

/* ---------- Price: Original & Discounted ---------- */
.product-card .price-original {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: line-through;
    line-height: 1.3;
}

.product-card .price-discount {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

/* ---------- Share Button on Card ---------- */
.product-card .btn-share-card {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
}

.product-card .btn-share-card:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Product Detail Tabs ---------- */
.product-detail-tabs .nav-pills .nav-link {
    color: var(--gray-600);
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition);
}

.product-detail-tabs .nav-pills .nav-link:hover {
    color: var(--primary);
    background: rgba(0, 97, 255, 0.05);
}

.product-detail-tabs .nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.product-detail-tabs .spec-table th {
    width: 35%;
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.product-detail-tabs .spec-table td {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ---------- Category Card ---------- */
.category-card {
    background: var(--light);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card .category-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(0, 97, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.category-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ---------- Brand Section ---------- */
.brand-logo {
    height: 60px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.brand-logo:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 97, 255, 0.3);
}

.brand-logo img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---------- Owl Carousel Overrides ---------- */
.brand-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.brand-carousel .item {
    padding: 4px;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .item {
    padding: 8px 4px 16px;
    height: 100%;
}

.testimonial-carousel .testimonial-card {
    height: 100%;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}

.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--gray-300);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active span {
    background: var(--gradient-primary);
    width: 28px;
    border-radius: 5px;
}

/* ---------- Testimonial ---------- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author-initial {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.testimonial-card .author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-card .author-role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ---------- Service Card (Homepage) ---------- */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 97, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Step Card (Proses Pemesanan) ---------- */
.step-card {
    text-align: center;
    padding: 28px 20px;
    position: relative;
    height: 100%;
}

.step-card .step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -8px;
}

.step-card .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.25);
}

.step-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    right: -60px;
}

.stat-item {
    padding: 20px 10px;
}

.stat-item .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
}

.stat-item p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
    font-weight: 500;
}

/* ---------- About Page ---------- */
.about-hero {
    padding: 120px 0 60px;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 97, 255, 0.04);
    top: -100px;
    right: -100px;
}

.about-stat-card {
    padding: 24px 16px;
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.milestone-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.milestone-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 97, 255, 0.2);
    transform: translateY(-4px);
}

.milestone-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.milestone-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 97, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.milestone-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.milestone-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- Visi Misi Section ---------- */
.visi-misi-visual {
    position: relative;
}

.visi-misi-visual img {
    box-shadow: var(--shadow-md);
}

.visi-misi-number {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 97, 255, 0.3);
}

.visi-misi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 97, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.misi-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.misi-item:last-child {
    border-bottom: none;
}

.misi-item-icon {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 97, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.misi-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---------- Blog Card ---------- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.blog-card .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-title a {
    color: var(--dark);
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-card .blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary);
}

/* Blog Featured */
.blog-featured {
    padding: 40px 0 60px;
}

.blog-featured-image {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.03);
}

.blog-featured-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.blog-featured-title a {
    color: var(--dark);
    transition: var(--transition);
}

.blog-featured-title a:hover {
    color: var(--primary);
}

/* Blog Categories Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-cat-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-cat-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.blog-cat-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Pagination */
.pagination .page-link {
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    margin: 0 3px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    color: var(--gray-300);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

/* ---------- Stats / Counter ---------- */
.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-primary);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-section h2 .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
    opacity: 0.85;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* ---------- Legal Pages ---------- */
.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 0.95rem;
}

.legal-content ul {
    color: var(--gray-600);
    line-height: 2;
    font-size: 0.95rem;
    padding-left: 1.25rem;
}

.legal-content ul li {
    margin-bottom: 4px;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: var(--gray-400);
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.footer-map iframe {
    filter: grayscale(80%) brightness(0.85);
    transition: filter 0.4s ease;
}

.footer-map iframe:hover {
    filter: grayscale(0%) brightness(1);
}

.footer > .container {
    padding-top: 35px;
    padding-bottom: 10px;
}

.footer h5 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer .footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer .footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-soft);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer .footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer .footer-contact li i {
    color: var(--primary-light);
    margin-top: 4px;
    min-width: 16px;
}

.footer .footer-contact a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer .footer-contact a:hover {
    color: var(--white);
}

.footer .social-links {
    display: flex;
    gap: 8px;
}

.footer .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
    margin-top: 25px;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.whatsapp-float a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float a i {
    font-size: 1.35rem;
    line-height: 1;
}

.whatsapp-float a span {
    display: none;
}

/* Pulse ring */
.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    z-index: -1;
    animation: pulse-wa 2.5s ease-out infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Sidebar (Filter) ---------- */
.sidebar-filter {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-filter h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-filter .filter-group {
    margin-bottom: 1.5rem;
}

.sidebar-filter .filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    display: block;
}

.sidebar-filter .form-check {
    margin-bottom: 8px;
}

.sidebar-filter .form-check-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ---------- Product Detail ---------- */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
}

.product-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-gallery .thumb-images {
    display: flex;
    gap: 8px;
}

.product-gallery .thumb-images .thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.product-gallery .thumb-images .thumb.active,
.product-gallery .thumb-images .thumb:hover {
    border-color: var(--primary);
}

.product-gallery .thumb-images .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .product-info h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.product-detail .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.product-detail .spec-table th {
    width: 40%;
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-detail .spec-table td {
    font-size: 0.9rem;
}

/* ---------- Blog Detail ---------- */
.blog-detail .blog-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--gray-700);
}

.blog-detail .blog-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.blog-detail .blog-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.blog-detail .blog-content p {
    margin-bottom: 1.25rem;
}

.blog-detail .blog-content img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-detail .blog-content ul,
.blog-detail .blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-detail .blog-content li {
    margin-bottom: 0.5rem;
}

.blog-sidebar .widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.blog-sidebar .widget h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.blog-sidebar .widget.gradient-bg {
    background: var(--gradient-primary);
    border: none;
}

.blog-sidebar .widget.gradient-bg h5 {
    color: var(--white);
    border-bottom: none;
    padding-bottom: 0;
}

.widget-cta {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.widget-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.widget-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 97, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.widget-cta h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.widget-cta p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ---------- Contact Section ---------- */
.contact-hero-compact {
    padding: 110px 0 40px;
    background: var(--light);
}

.contact-hero-compact h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-hero-compact p {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 97, 255, 0.3);
    transform: translateY(-4px);
}

.contact-info-card .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info-card .contact-icon.bg-green { background: #25D366; }
.contact-info-card .contact-icon.bg-blue { background: var(--primary); }
.contact-info-card .contact-icon.bg-amber { background: #F59E0B; }
.contact-info-card .contact-icon.bg-red { background: #EF4444; }

.contact-info-main {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-info-sub {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.1);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.95rem;
    z-index: 2;
}

.input-icon-wrapper .form-control {
    padding-left: 40px;
}

.contact-form-wrapper .form-label {
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.contact-sidebar-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding: 18px 24px;
    background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 24px 18px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ---------- E-Katalog ---------- */
.ekatalog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.ekatalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ekatalog-card .ekatalog-image {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.ekatalog-card .ekatalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekatalog-card .ekatalog-body {
    padding: 20px;
}

.btn-tokopedia {
    background: #42b549;
    color: var(--white) !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-tokopedia:hover {
    background: #37a040;
    color: var(--white) !important;
}

/* ---------- Scroll Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Decorative Blobs ---------- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.blob-primary { background: rgba(0, 97, 255, 0.12); }
.blob-light { background: rgba(59, 130, 246, 0.10); }
.blob-soft { background: rgba(96, 165, 250, 0.10); }

/* ---------- Pagination Custom ---------- */
.pagination-custom .page-link {
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 500;
}

.pagination-custom .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
}

.pagination-custom .page-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    border: none;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 97, 255, 0.30);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 72px 0;
    }

    .section-padding-sm {
        padding: 48px 0;
    }

    .navbar-custom .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-custom .btn-nav {
        display: inline-block;
        margin-top: 10px;
    }

    .cta-section {
        padding: 72px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .sidebar-filter {
        position: static;
        margin-bottom: 2rem;
    }

    .product-gallery {
        position: static;
    }
}

/* ---------- 404 Error Page ---------- */
.error-page {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, #EEF2FF 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

.error-illustration {
    position: relative;
}

.error-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.error-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.30);
    position: relative;
    z-index: 2;
}

.error-icon-wrapper i {
    font-size: 3.5rem;
    color: var(--white);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    56% { transform: scale(1); }
}

.pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(0, 97, 255, 0.2);
    animation: pulseRing 2.5s ease-out infinite;
    z-index: 1;
}

.pulse-ring-2 {
    animation-delay: 1.2s;
}

@keyframes pulseRing {
    0% { width: 120px; height: 120px; opacity: 1; }
    100% { width: 250px; height: 250px; opacity: 0; }
}

.error-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.error-code .digit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.85;
}

.error-code .digit-zero i {
    font-size: 5.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-content {
    max-width: 520px;
}

.error-label {
    display: inline-block;
    background: rgba(0, 97, 255, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.error-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.error-links {
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.error-links p {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.error-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    font-weight: 500;
}

.error-links a:hover {
    color: var(--primary);
    border-color: rgba(0, 97, 255, 0.3);
    background: rgba(0, 97, 255, 0.04);
    transform: translateY(-1px);
}

/* Floating particles */
.error-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.error-particles .particle {
    position: absolute;
    color: rgba(0, 97, 255, 0.08);
    font-size: 1.8rem;
    animation: floatParticle 12s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 2rem; }
.particle-2 { top: 20%; right: 8%; animation-delay: 2s; font-size: 1.5rem; }
.particle-3 { bottom: 25%; left: 10%; animation-delay: 4s; font-size: 2.2rem; }
.particle-4 { top: 50%; right: 5%; animation-delay: 1s; font-size: 1.6rem; }
.particle-5 { bottom: 15%; right: 15%; animation-delay: 3s; font-size: 1.8rem; }
.particle-6 { top: 35%; left: 3%; animation-delay: 5s; font-size: 1.4rem; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.7; }
    75% { transform: translateY(-25px) rotate(8deg); opacity: 0.9; }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .hero-image {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 2rem;
        justify-content: center;
    }

    .hero-stat h3 {
        font-size: 1.3rem;
    }

    .hero-stat p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 56px 0;
    }

    .section-padding-sm {
        padding: 40px 0;
    }

    /* Buttons - smaller on mobile */
    .btn-primary-custom,
    .btn-whatsapp,
    .btn-outline-custom,
    .btn-accent {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
    }

    /* Category cards on mobile */
    .category-card {
        padding: 20px 12px;
    }

    .category-card .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-card h5 {
        font-size: 0.85rem;
    }

    .category-card p {
        font-size: 0.75rem;
    }

    /* Product cards on mobile */
    .product-card .product-image {
        height: 160px;
    }

    .product-card .product-body {
        padding: 12px;
    }

    .product-card .product-category {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .product-card .product-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .product-card .product-brand {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .product-card .product-price {
        font-size: 0.8rem;
    }

    .product-card .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    /* Product card prices on mobile */
    .product-card .price-original {
        font-size: 0.65rem;
    }

    .product-card .price-discount {
        font-size: 0.8rem;
    }

    /* Product detail on mobile */
    .product-gallery .main-image img {
        height: 260px;
    }

    .product-gallery .thumb-images .thumb {
        width: 60px;
        height: 60px;
    }

    .product-detail .product-info h1 {
        font-size: 1.3rem;
    }

    .product-detail .product-meta {
        gap: 8px;
        font-size: 0.8rem;
    }

    /* Product detail tabs on mobile */
    .product-detail-tabs .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 8px 14px !important;
    }

    .product-detail-tabs {
        padding: 16px !important;
    }

    /* Blog cards on mobile */
    .blog-featured {
        padding: 30px 0 40px;
    }

    .blog-featured-image img {
        height: 220px;
    }

    .blog-featured-title {
        font-size: 1.2rem;
    }

    .blog-categories {
        flex-wrap: wrap;
    }

    .blog-cat-link {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .blog-card .blog-image {
        height: 160px;
    }

    .blog-card .blog-body {
        padding: 16px;
    }

    .blog-card .blog-title {
        font-size: 0.95rem;
    }

    .blog-card .blog-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    /* Blog detail on mobile */
    .blog-detail .blog-content {
        font-size: 0.95rem;
    }

    /* Testimonial on mobile */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.9rem;
    }

    /* Service card on mobile */
    .service-card {
        padding: 24px 20px;
    }

    .service-card .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .service-card h5 {
        font-size: 0.95rem;
    }

    /* Step card on mobile */
    .step-card .step-number {
        font-size: 2rem;
    }

    .step-card .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Stats on mobile */
    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.78rem;
    }

    /* CTA section on mobile */
    .cta-section {
        padding: 56px 0;
    }

    .cta-section h2 {
        font-size: 1.35rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    /* Footer on mobile */
    .footer > .container {
        padding-top: 25px;
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-brand {
        justify-content: center;
    }

    .footer .footer-badges {
        justify-content: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 8px;
    }

    /* Brand logos on mobile */
    .brand-logo {
        height: 50px;
        padding: 8px 12px;
    }

    .brand-logo img {
        max-height: 30px;
    }

    /* E-Katalog on mobile */
    .ekatalog-card .ekatalog-image {
        height: 150px;
    }

    .ekatalog-card .ekatalog-body {
        padding: 14px;
    }

    /* Contact page on mobile */
    .contact-hero-compact {
        padding: 90px 0 30px;
    }

    .contact-hero-compact h1 {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-info-card .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* Stats on mobile */
    .stat-card {
        padding: 20px 10px;
    }

    .stat-card .stat-number {
        font-size: 1.8rem;
    }

    .stat-card .stat-label {
        font-size: 0.8rem;
    }

    /* About page on mobile */
    .about-hero {
        padding: 100px 0 40px;
    }

    .about-hero h1 {
        font-size: 1.75rem !important;
    }

    .about-stat-number {
        font-size: 1.6rem;
    }

    .milestone-card {
        padding: 20px 16px;
    }

    .visi-misi-number {
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .visi-misi-content h3 {
        font-size: 1.25rem;
    }

    /* FAQ on mobile */
    .faq-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .faq-accordion .accordion-body {
        font-size: 0.9rem;
        padding: 0 16px 14px;
    }

    /* WhatsApp float on mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        text-align: center;
    }

    /* 404 Error Page */
    .error-page {
        padding: 80px 0 60px;
    }

    .error-code .digit {
        font-size: 4.5rem;
    }

    .error-code .digit-zero i {
        font-size: 3.5rem;
    }

    .error-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .error-icon-wrapper i {
        font-size: 2.5rem;
    }

    .pulse-ring {
        width: 90px;
        height: 90px;
    }

    @keyframes pulseRing {
        0% { width: 90px; height: 90px; opacity: 1; }
        100% { width: 180px; height: 180px; opacity: 0; }
    }

    .error-content {
        text-align: center;
        margin: 0 auto;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-desc {
        font-size: 0.9rem;
    }

    .error-actions {
        justify-content: center;
    }

    .error-actions .btn {
        width: 100%;
        text-align: center;
    }

    .error-links {
        text-align: center;
    }

    .error-links .d-flex {
        justify-content: center;
    }

    .error-particles .particle {
        display: none;
    }
}
