﻿/* ========================================
   ELOK Printing - Main Stylesheet
   Design System: Dark Glassmorphism + Brand Blue Accent
   Brand Color: #008fd7
   ======================================== */

/* CSS Variables - ELOK Design Token System */
:root {
    /* Brand Colors - Corporate Blue */
    --accent-color: #008fd7;
    --accent-light: #00a8f3;
    --accent-dark: #0077b6;
    --accent-glow: rgba(0, 143, 215, 0.15);
    --accent-border: rgba(0, 143, 215, 0.3);
    
    /* Legacy Primary (for compatibility) */
    --primary-color: #008fd7;
    --primary-dark: #0077b6;
    --primary-light: #00a8f3;
    --secondary-color: #008fd7;
    
    /* Dark Theme Backgrounds */
    --bg-dark-start: #0d1333;
    --bg-dark-end: #070b1f;
    --bg-dark-mid: #0a0f29;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(0, 143, 215, 0.3);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.6);
    --text-faint: rgba(255, 255, 255, 0.5);
    
    /* Legacy Colors */
    --dark-color: #1E293B;
    --light-color: #F8FAFC;
    --border-color: #E2E8F0;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 143, 215, 0.15);
    --shadow-card-hover: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 143, 215, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL STYLES - Dark Theme Base
   ======================================== */

/* Body Dark Theme */
body {
    background: linear-gradient(180deg, var(--bg-dark-start) 0%, var(--bg-dark-end) 100%);
    background-attachment: fixed;
    color: var(--text-light);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Global Link Styles */
a {
    color: var(--accent-color);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--accent-light);
}

/* ========================================
   DESIGN SYSTEM UTILITY CLASSES
   ======================================== */

/* Glass Card Component */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

/* Section Dark Background */
.section-dark {
    background: linear-gradient(180deg, var(--bg-dark-mid) 0%, var(--bg-dark-start) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Primary Button */
.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 143, 215, 0.35);
    transition: var(--transition-smooth);
}

.btn-primary-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 143, 215, 0.45);
    color: #ffffff;
}

/* Secondary Button (Ghost) */
.btn-secondary-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-brand:hover {
    border-color: var(--glass-border-hover);
    background: rgba(0, 143, 215, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-premium-lhtkatalog {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #d1d5db !important;
    color: #6b7280 !important;

    padding: 14px 34px;
    min-width: 180px;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;

    transition: all 0.3s ease;
    animation: tombolGerak 2s ease-in-out infinite;
}


.btn-premium-lhtkatalog:hover {
    transform: translateY(-5px);
    background-color: #c5cbd3 !important;
    color: #6b7280 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes tombolGerak {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
.btn-premium-lhtkatalog {
    animation: tombolNaik 2s ease-in-out infinite;
}
.btn-premium-hubungikami {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:#2fa8df !important;
    color: #ffffff !important;

    padding: 16px 38px;
    min-width: 220px;

    border: none;
    border-radius: 14px;

    font-size: 17px;
    font-weight: 800;
    text-decoration: none !important;

    box-shadow: 0 14px 30px rgba(47, 168, 223, 0.25);
    transition: all 0.3s ease;

    animation: tombolHubungiGerak 2s ease-in-out infinite;
}

.btn-premium-hubungikami:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #1f9ed8 0%, #aee0f7 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 35px rgba(47, 168, 223, 0.35);
}

.btn-premium-hubungikami:focus,
.btn-premium-hubungikami:active,
.btn-premium-hubungikami:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

@keyframes tombolHubungiGerak {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
.btn-premium-hubungikami {
    animation: tombolTurun 2s ease-in-out infinite;
    animation-delay: 0.5s;
}
.btn-premium-lhtkatalog,
.btn-premium-hubungikami {
    padding: 16px 38px;
    min-width: 220px;
    height: 58px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
}

.hero-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 70px;
}


.hm-hero-custom {
    margin-top: 100px;
}

.hm-hero-inner-custom {
    text-align: center;
}

.hm-hero-title-custom {
    color: rgb(255, 255, 255);
    font-size: 56px; /* atur ukuran judul di sini */
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hm-hero-title-custom span {
    color: #008fd7;
    font-size: 56px; /* atur ukuran teks biru di sini */
    font-weight: 900;
}

.hm-hero-sub-custom {
    color: #4b5563;
    font-size: 18px; /* atur ukuran deskripsi di sini */
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-title-custom {
    color: #ffffff;
    font-size: 32px; /* ukuran teks hitam */
    font-weight: 1000;
    line-height: 1.15;
    margin: 0;
}

.section-title-custom span {
    color: #008fd7;
    font-size: 32px; /* ukuran teks biru */
    font-weight: 1000;
}

.featured-products {
    background-color: #f9fafe; /* soft card-bg */
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: #007bff; /* biru label */
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
}

.section-title .highlight {
    color: #0095ff; /* accent color */
}

.see-all {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

/* Grid container */
.hm-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 card per row */
    gap: 20px;
    margin-top: 20px;
}

/* Card */
.hm-cat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #1f1f1f;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hm-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon wrapper */
.hm-cat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #e5f0ff; /* default icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 12px;
    font-size: 24px;
    color: #007bff;
}

/* Info section */
.hm-cat-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hm-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}

.hm-cat-count {
    font-size: 12px;
    color: #555;
}

/* Arrow */
.hm-cat-arrow {
    font-size: 20px;
    color: #007bff;
}

/* Card khusus "Lihat Semua" */
.hm-cat-all .hm-cat-icon {
    background-color: #d0ebff;
    color: #0095ff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hm-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hm-cat-grid {
        grid-template-columns: 1fr;
    }
}

/* baru*/
.category-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

/* Card kategori */
.category-tab-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #1f1f1f;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-tab-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Icon kategori */
.category-tab-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

/* Judul kategori */
.category-tab-title {
    font-weight: 600;
    font-size: 14px;
    color: #1f1f1f;
}

/* Warna icon per kategori */
.category-tab-card.id-card .category-tab-icon { background-color: #a78bfa; }      /* ungu */
.category-tab-card.banner-card .category-tab-icon { background-color: #f87171; }   /* merah */
.category-tab-card.digital-card .category-tab-icon { background-color: #3b82f6; }  /* biru */
.category-tab-card.all-card .category-tab-icon { background-color: #bfdbfe; color: #1e40af; } /* biru muda */

/* Responsive kategori */
@media (max-width: 1024px) {
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-tabs {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Grid container 4 card horizontal
   ================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 card per row */
    gap: 16px;
    margin-top: 20px;
}

/* Card */
.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #1f1f1f;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Icon */
.category-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

/* Info */
.category-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-title {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.category-count {
    font-size: 12px;
    color: #555;
}

/* Arrow */
.category-arrow {
    font-size: 20px;
    color: #007bff;
}

/* Card "Lihat Semua" */
.all-products-card .category-icon {
    background-color: #bfdbfe;
    color: #1e40af;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Warna icon untuk kategori (opsional) */
.category-card:nth-child(1) .category-icon { background-color: #a78bfa; }      /* ungu */
.category-card:nth-child(2) .category-icon { background-color: #f87171; }      /* merah */
.category-card:nth-child(3) .category-icon { background-color: #3b82f6; }      /* biru */


/* ======================
   SECTION ORDER STATUS
   ====================== */

.order-status-section {
    /* background: linear-gradient(135deg, #008ED6 0%, #0056B3 100%); */
    padding:100px 20px;
    font-family: 'poppins', sans-serif;
    color: #fff; /* teks tetap putih supaya kontras */
    border-radius: 16px; /* opsional, agar section lebih “card-like” */
}

.order-status-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #008ED6 0%, #0056B3 100%); */
    padding: 70px 90px;
    border-radius: 24px;
    padding-left:100px;
    align-items:left;
    justify-content:flex-start;
    position:relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    overflow:hidden;
}

/* Left side */
.order-status-info {
    width:100%;
    max-width:700px;
    padding: 40px 0;
    flex: 1 1 400px;
}

.order-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.order-title {
    display: block;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.order-desc {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.order-btn {
    background-color: #fff;
    color: #0d4eff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
}

.order-btn:hover {
    background-color: #e6e6ff;
}

/* Legend */
.order-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.legend-green { background-color: #00c853; }
.legend-yellow { background-color: #ffd600; }
.legend-blue { background-color: #42a5f5; }

/* Right side card */
.order-card {
    flex: 1 1 350px;
    border-radius: 16px;
    padding: 24px;
    min-width: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Header */
.order-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.order-number {
    font-weight: 600;
}

.order-status-label {
    background-color: #ffd600;
    color: #0d4eff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Steps */
.order-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.step-green { background-color: #00c853; }
.step-yellow { background-color: #ffd600; color: #0d4eff; }
.step-blue { background-color: #42a5f5; }

/* Step disabled: hanya untuk info text, icon tetap biru */
.step-disabled .step-info,
.step-disabled .step-title,
.step-disabled .step-date {
    opacity: 0.5;
}

/* Info step */
.step-info {
    display: flex;
    flex-direction: column;
}

.step-title { font-weight: 600; }
.step-date { font-size: 12px; opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
    .order-status-container {
        flex-direction: column;
    }
}


.about-section {
    padding:40px 20px 100px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1180px;
    align-items: center;
    margin: auto;
    grid-template-columns: 1.05fr 0.95fr;
}

/* Left images */
.about-images {
    width:100%;
    flex: 1 1 500px;
}

.img-large {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
}

.img-small-wrapper {
    display: flex;
    gap: 16px;
}

.img-small {
    flex: 1;
    border-radius: 16px;
}

/* Right text */
.about-text {
    flex: 1 1 500px;
}

.about-label {
    font-size: 12px;
    color: #42a5f5;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-title .highlight {
    color: #008fd7;
}

.about-desc {
    font-size: 14px;
    margin-bottom: 16px;
    color: #4b4b4b;
}

/* Statistics */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: #555;
}

/* Button */
.about-btn {
    background-color: #0d4eff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.about-btn:hover {
    background-color: #0056d9;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 24px;
    }

    .img-small-wrapper {
        flex-direction: row;
    }
}

/* Career Section */

.career-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.career-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.career-label {
    color: #3498db;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.career-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    flex: 1 1 auto;
}

.career-btn {
    background-color: #0d4eff;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.career-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.career-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.career-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.icon-blue { background-color: #42a5f5; }
.icon-yellow { background-color: #ffd600; color: #0d4eff; }
.icon-green { background-color: #a5d6a7; color: #056b00; }

.career-info {
    display: flex;
    flex-direction: column;
}

.career-job {
    font-weight: 600;
    margin: 0 0 4px 0;
}

.career-location {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.career-type {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 8px;
}

.type-green { background-color: #e6f4ea; color: #00c853; }
.type-blue { background-color: #e3f2fd; color: #42a5f5; }

.career-apply {
    font-size: 14px;
    font-weight: 600;
    color: #0d4eff;
    text-decoration: none;
}

.partners-section {
    padding: 60px 20px;
    background-color: #0b102b;
    font-family: 'poppins', sans-serif;
}

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

.partners-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 143, 215, 0.10);
    color: var(--pf-blue);
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partners-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.partners-title .highlight {
    color: #008ed6;
}

.partners-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: #008ed6;
    text-decoration: none;
    font-weight: 600;
}

.partners-link:hover {
    text-decoration: underline;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

/* ========================================
   DARK MODE - PARTNERS SECTION
======================================== */

[data-theme="dark"] .partners-section {
    background: #0a0f29;
}

/* LABEL */
[data-theme="dark"] .partners-label {
    color: #53B6FF;
}

/* TITLE */
[data-theme="dark"] .partners-title {
    color: #FFFFFF;
}

/* HIGHLIGHT */
[data-theme="dark"] .partners-title .highlight {
    color: #1292EE;
}

/* LINK */
[data-theme="dark"] .partners-link {
    color: #53B6FF;
}

/* LOGO WRAPPER */
[data-theme="dark"] .partner-logo {

    filter:
        brightness(1.05) contrast(1.05);

    opacity: 0.95;

    transition: .25s ease;
}

/* HOVER */
[data-theme="dark"] .partner-logo:hover {

    transform: translateY(-4px);

    opacity: 1;
}

[data-theme="dark"] .partner-logo {

    filter:
        drop-shadow(0 4px 14px rgba(18, 146, 238, 0.12)) brightness(1.05);

}

/* Accent Badge */
.accent-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 143, 215, 0.15);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 143, 215, 0.2);
}

/* Gradient Title Underline */
.gradient-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.gradient-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 3px;
}

.gradient-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Text Utilities */
.text-brand {
    color: var(--accent-color);
}

.text-white {
    color: var(--text-white);
}

.text-muted-dark {
    color: var(--text-muted);
}

/* Background Utilities */
.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.bg-dark-gradient {
    background: linear-gradient(180deg, var(--bg-dark-start) 0%, var(--bg-dark-end) 100%);
}

/* ========================================
   1. HERO SECTION - Split Layout with Text & Slider
   Professional corporate design
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    overflow: hidden;
    margin-top: -72px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 143, 215, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 143, 215, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 24px 60px;
    min-height: 650px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content Area - Left Side */
.hero-content-area {
    position: relative;
    z-index: 10;
}

.hero-text-wrapper {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 143, 215, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 143, 215, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .text-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 143, 215, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 143, 215, 0.5);
    color: #fff;
}

.btn-hero-primary i {
    font-size: 1.25rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    border-color: rgba(0, 143, 215, 0.5);
    background: rgba(0, 143, 215, 0.1);
    color: #ffffff;
    transform: translateY(-4px);
}

.btn-hero-secondary i {
    font-size: 1.25rem;
}

.hero-trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

/* Hero Section Responsive */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 32px;
        padding: 78px 24px 50px;
    }
    
    .hero-headline {
        font-size: 2.75rem;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 76px 20px 40px;
        min-height: auto;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-indicators {
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding: 72px 16px 28px;
        gap: 24px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-trust-indicators {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .trust-item {
        min-width: 0;
        gap: 5px;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .trust-item i {
        font-size: 0.92rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 8px 14px;
    }
}

/* ========================================
   2. STATS SECTION
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
}

.stats-card {
    text-align: center;
    color: white;
    padding: 1rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    font-weight: 500;
}


/* =========================
   HOME PRODUCT CARD V2
========================= */

.prod-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.prod-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #edf1f5;
    box-shadow:0 8px 24px rgba(15,23,42,.06);
    transition:.25s ease;
}

.prod-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
}

.prod-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:5;
    background:#0ea5e9;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:4px 10px;
    border-radius:999px;
}

.prod-card-img-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    height:220px;
    background:#f8fafc;
    padding:20px;
}

.prod-card-img{
    max-width:100%;
    max-height:180px;
    object-fit:contain;
}

.prod-card-body{
    padding:20px;
}

.prod-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}

.prod-icon-box{
    width:34px;
    height:34px;
    border-radius:10px;
    background:#eaf5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#008fd7;
}

.prod-category-pill{
    background:#f1f5f9;
    color:#64748b;
    font-size:11px;
    font-weight:600;
    padding:4px 10px;
    border-radius:999px;
}

.prod-card-name{
    font-size:26px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:10px;
}

.prod-card-name a{
    color:#0f172a;
    text-decoration:none;
}

.prod-card-desc{
    font-size:13px;
    color:#64748b;
    line-height:1.6;
    min-height:42px;
    margin-bottom:18px;
}

.prod-card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.prod-card-price-wrap span{
    font-size:11px;
    color:#94a3b8;
    display:block;
    margin-bottom:4px;
}

.prod-card-price{
    font-size:34px;
    font-weight:900;
    color:#008fd7; /* tetap biru */
    line-height:1;
}

.prod-card-price small{
    font-size:14px;
    color:#94a3b8;
    font-weight:600;
}

.prod-card-btn{
    display:flex;
    align-items:center;
    gap:6px;
    background:#008fd7;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.prod-card-btn:hover{
    color:#fff;
    background:#007cc0;
}

/* ========================================
   3. PRODUCT CATEGORY CARDS
   ======================================== */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    height: 100%;
}

.category-card:hover {
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 4px 16px rgba(0, 143, 215, 0.2);
    transform: translateY(-4px);
}

.category-card .card-body {
    padding: 1.5rem;
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-card h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.category-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.product-count {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 143, 215, 0.15);
    color: var(--accent-color);
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.category-card .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
}

/* ========================================
   4. FEATURE BOXES
   ======================================== */
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}

.feature-box:hover {
    background: rgba(0, 143, 215, 0.03);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-box h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   5. PORTFOLIO CARDS
   ======================================== */
.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 4px 16px rgba(0, 143, 215, 0.2);
    transform: translateY(-4px);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.portfolio-card .card-body {
    padding: 1.25rem;
}

.portfolio-card .card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

/* ========================================
   6. CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    color: white;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 143, 215, 0.2) 0%, transparent 60%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.03"/></svg>');
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    opacity: 0.95;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ========================================
   7. UTILITY CLASSES
   ======================================== */
.section-py {
    padding: 56px 0;
    background: linear-gradient(180deg, #0a0f29 0%, #070b1f 100%);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.badge-label {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(0, 143, 215, 0.1);
    color: var(--primary-color);
}

/* ========================================
   8. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .stats-number {
        font-size: 2rem;
    }
    
    .section-py {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 32px 0;
    }
    
    .stats-number {
        font-size: 1.75rem;
    }
    
    .stats-label {
        font-size: 0.8125rem;
    }
}

/* ========================================
   HOME ABOUT SECTION
======================================== */

.home-about-section {
    padding: 90px 0;
    background: #fff;
}

.home-about-section .container {
    max-width: 1180px;
}

/* LAYOUT */
.home-about-container {
    display: grid;

    grid-template-columns: 520px 1fr;

    align-items: center;

    gap: 56px;
}

/* LEFT IMAGE */
.home-about-images {
    width: 100%;
}

/* IMAGE BESAR */
.home-about-large {
    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: 14px;

    display: block;
}

/* WRAPPER SMALL */
.home-about-small-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 14px;
}

/* SMALL IMAGE */
.home-about-small {
    width: 100%;

    height: 130px;

    object-fit: cover;

    border-radius: 14px;

    display: block;
}

/* RIGHT TEXT */
.home-about-text {
    max-width: 520px;
    margin-top: -6px;
}

/* LABEL */
.home-about-text .about-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #EAF5FF;
    color: #0E9AF0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

/* TITLE */
.home-about-text .about-title {
    font-size: 30px;
    
    line-height: 1.18;
    
    font-weight: 800;
    
    letter-spacing: -0.03em;
    
    color: #111827;
    
    margin-bottom: 18px;
}

/* HIGHLIGHT */
.home-about-text .highlight {
    color: #1292EE;
}

/* DESCRIPTION */
.home-about-text .about-desc {
    font-size: 14px;

    line-height: 1.9;

    color: #6B7280;

    margin-bottom: 14px;
}

/* STATS */
.home-about-text .about-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 26px;
    margin-bottom: 28px;
}

/* SINGLE STAT */
.home-about-text .stat-item {
    position: relative;

    padding-left: 14px;
}

/* BLUE BAR */
.home-about-text .stat-item::before {
    content: '';

    position: absolute;

    left: 0;
    top: 25px;

    width: 3px;
    height: 50px;

    border-radius: 999px;

    background: #1292EE;
}

/* NUMBER */
.home-about-text .stat-item h3 {
    font-size: 28px;

    line-height: 1;

    font-weight: 800;

    color: #111827;

    margin-bottom: 6px;
}

/* LABEL */
.home-about-text .stat-item span {
    font-size: 11px;

    color: #6B7280;
}

/* BUTTON */
.home-about-text .about-btn {
    height: 46px;

    padding: 0 22px;

    border-radius: 10px;

    background: #1292EE;

    color: white;

    border: none;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;
}

.home-about-text .about-btn:hover {
    background: #0B84DA;

    transform: translateY(-2px);
}
/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .home-about-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .home-about-text {
        max-width: 100%;
    }

    .home-about-large {
        height: 280px;
    }

    .home-about-small {
        height: 160px;
    }

    .home-about-text .about-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {

    .home-about-section {
        padding: 70px 0;
    }

    .home-about-large {
        height: 220px;
    }

    .home-about-small {
        height: 120px;
    }

    .home-about-small-wrapper {
        gap: 10px;
    }

    .home-about-text .about-title {
        font-size: 32px;
    }
}


@media (max-width:991px){
.order-status-section{padding:70px 20px;}
.order-status-container{padding:60px;padding-left:60px;}
.order-title{font-size:46px;}
.order-desc{font-size:16px;max-width:520px;}
}

@media (max-width:768px){
.order-status-section{padding:60px 18px;}
.order-status-container{padding:50px 35px;padding-left:35px;border-radius:20px;}
.order-status-info{max-width:100%;}
.order-title{font-size:36px;line-height:1.2;}
.order-desc{font-size:15px;max-width:100%;}
.order-btn{width:fit-content;}
}

@media (max-width:480px){
.order-status-section{padding:50px 14px;}
.order-status-container{padding:35px 25px;padding-left:25px;}
.order-label{font-size:11px;padding:7px 14px;}
.order-title{font-size:30px;}
.order-desc{font-size:14px;line-height:1.7;}
.order-btn{width:100%;padding:15px;}
}


/* ========================================
   DARK MODE - HOME ABOUT
======================================== */

[data-theme="dark"] .home-about-section {
    background: #0a0f29;
}

/* TITLE */
[data-theme="dark"] .home-about-text .about-title {
    color: #FFFFFF;
}

/* DESCRIPTION */
[data-theme="dark"] .home-about-text .about-desc {
    color: rgba(255, 255, 255, 0.72);
}

/* LABEL */
[data-theme="dark"] .home-about-text .about-label {
    background: rgba(18, 146, 238, 0.14);

    color: #53B6FF;
}

/* STATS NUMBER */
[data-theme="dark"] .home-about-text .stat-item h3 {
    color: #FFFFFF;
}

/* STATS LABEL */
[data-theme="dark"] .home-about-text .stat-item span {
    color: rgba(255, 255, 255, 0.68);
}

/* BLUE BAR */
[data-theme="dark"] .home-about-text .stat-item::before {
    background: #1292EE;
}

/* BUTTON */
[data-theme="dark"] .home-about-text .about-btn {
    background: #1292EE;

    color: #FFFFFF;
}

[data-theme="dark"] .home-about-text .about-btn:hover {
    background: #1EA0FF;
}

/* IMAGE */
[data-theme="dark"] .home-about-large,
[data-theme="dark"] .home-about-small {

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.05);
}

