/* ============================================================
   NusaTech Theme - Main CSS
   Version: 3.0.0 (CLEAN & SIMPLE)
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;
  --primary-dark: #1e3a8a;
  --primary-soft: #60a5fa;
  --dark: #0f172a;
  --text: #1a1a1a;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-lighter: #cbd5e1;
  --bg: #f8f9fb;
  --bg-white: #ffffff;
  --bg-soft: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --wa-green: #25d366;
  --wa-green-hover: #1ebe5b;
  --danger: #ef4444;
  --warning: #f97316;
  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(37, 99, 235, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.1);
  --font: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  --transition: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Accessibility */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress Core */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; }
.wp-caption { max-width: 100%; margin-bottom: 1.5em; }
.wp-caption-text { font-size: 0.85em; color: var(--text-muted); text-align: center; padding: 6px 0; }
.sticky { position: relative; }
.gallery-caption, .bypostauthor { display: block; }

/* ============================================================
   3. HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

body.admin-bar .site-header { top: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

.logo a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  gap: 8px;
}

.logo span { color: var(--text-heading); }

.custom-logo-link {
  display: flex;
  align-items: center;
  max-height: 50px;
  text-decoration: none;
}

.custom-logo-link img,
.custom-logo {
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.site-branding { display: flex; flex-direction: column; line-height: 1.1; }
.site-title { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin: 0; }
.site-title a { color: inherit; text-decoration: none; }
.site-description { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--primary);
}

.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
  list-style: none;
}

.nav-links .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu a { display: block; padding: 10px 20px; font-size: 0.9rem; }
.nav-links .sub-menu a:hover { background: var(--primary-light); }

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all var(--transition) !important;
}

.btn-nav:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   4. HAMBURGER & MOBILE MENU
   ============================================================ */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition);
  z-index: 1100;
}

.hamburger:hover { background: #dbeafe; }

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: #fff;
  z-index: 1060;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  padding: 22px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header .logo { font-size: 1.25rem; }

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mobile-close:hover { background: var(--danger); color: #fff; }

.mobile-nav {
  list-style: none;
  padding: 18px 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav li a .m-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav li a.btn-mobile-wa {
  background: var(--wa-green);
  color: #fff;
  margin-top: 14px;
  justify-content: center;
}

.mobile-nav li a.btn-mobile-wa .m-ico {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.mobile-menu-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

/* ============================================================
   5. HERO SLIDER — SIMPLE FULL WIDTH
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--dark);
  margin: 0;
  padding: 0;
  margin-top: 70px;
  left: 0;
  right: 0;
}

body.admin-bar .hero { margin-top: 102px; }

@media screen and (max-width: 782px) {
  body.admin-bar .hero { margin-top: 116px; }
}

/* Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--dark);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.2) 0%,
    rgba(15, 23, 42, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 750px;
  padding: 0 20px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
}

.slide h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.slide h1 span { color: var(--primary-soft); }

.slide p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.slide-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.slide:nth-child(1):not([style*="background-image"]) {
  background-image: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
}
.slide:nth-child(2):not([style*="background-image"]) {
  background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.slide:nth-child(3):not([style*="background-image"]) {
  background-image: linear-gradient(135deg, #0f172a 0%, #134e4a 50%, #0d9488 100%);
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  background: #fff;
  width: 36px;
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slider-arrow:hover { background: rgba(255, 255, 255, 0.3); }
.arrow-left { left: 22px; }
.arrow-right { right: 22px; }

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  display: inline-block;
  font-size: 0.95rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   6. SECTION TITLE
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.about { padding: 90px 0; background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual { position: relative; height: 420px; }

.about-img-main {
  width: 85%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-dark), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: #fff;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
  background-size: cover;
  background-position: center;
}

.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  background: linear-gradient(135deg, #134e4a, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 6px solid var(--bg-white);
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 5%;
  background: var(--bg-white);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.about-badge .num { font-size: 1.75rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-badge .txt { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.about-content .label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-content h2 span { color: var(--primary); }

.about-content > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.about-feature { display: flex; gap: 12px; align-items: flex-start; }

.about-feature .ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.about-feature h4 { font-size: 0.93rem; font-weight: 700; color: var(--text-heading); margin-bottom: 2px; }
.about-feature p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-stat .num { font-size: 1.75rem; font-weight: 800; color: var(--text-heading); line-height: 1; }
.about-stat .num span { color: var(--primary); }
.about-stat .txt { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ============================================================
   8. PRODUCT GRID
   ============================================================ */
.products { padding: 90px 0; background: var(--bg); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.p1 { background-color: #dbeafe; background-image: linear-gradient(135deg, #dbeafe, #eff6ff); }
.p2 { background-color: #dcfce7; background-image: linear-gradient(135deg, #dcfce7, #f0fdf4); }
.p3 { background-color: #fef3c7; background-image: linear-gradient(135deg, #fef3c7, #fffbeb); }
.p4 { background-color: #fce7f3; background-image: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.p5 { background-color: #e0e7ff; background-image: linear-gradient(135deg, #e0e7ff, #eef2ff); }
.p6 { background-color: #ccfbf1; background-image: linear-gradient(135deg, #ccfbf1, #f0fdfa); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.sale { background: var(--danger); }

.product-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }

.product-category {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-body h3 a { color: inherit; text-decoration: none; }
.product-body h3 a:hover { color: var(--primary); }

.product-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-cek-produk {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary-light);
  color: var(--primary);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1.5px solid var(--primary-border);
  transition: all var(--transition);
}

.btn-cek-produk:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   9. BLOG LIST SECTION
   ============================================================ */
.blog { padding: 90px 0; background: var(--bg-white); }

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.blog-item:hover {
  border-color: var(--primary-border);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.blog-thumb {
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.bt1 { background-color: var(--primary-dark); background-image: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.bt2 { background-color: #134e4a; background-image: linear-gradient(135deg, #134e4a, #14b8a6); }
.bt3 { background-color: #7c2d12; background-image: linear-gradient(135deg, #7c2d12, #f97316); }
.bt4 { background-color: #4c1d95; background-image: linear-gradient(135deg, #4c1d95, #8b5cf6); }

.blog-thumb .blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-content { padding: 26px 28px 26px 0; display: flex; flex-direction: column; justify-content: center; }

.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }

.blog-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}

.blog-content h3 a { color: inherit; text-decoration: none; }
.blog-item:hover .blog-content h3 { color: var(--primary); }

.blog-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.blog-read {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  align-self: flex-start;
}

.blog-read:hover { gap: 12px; }

/* ============================================================
   10. PROJECT / PORTFOLIO SECTION
   ============================================================ */
.projects { padding: 90px 0; background: var(--bg); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--bg-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  cursor: pointer;
}

.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.project-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.project-card:hover .project-thumb::after { opacity: 1; }

.pt1 { background-color: #1e3a8a; background-image: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.pt2 { background-color: #134e4a; background-image: linear-gradient(135deg, #134e4a, #14b8a6); }
.pt3 { background-color: #7c2d12; background-image: linear-gradient(135deg, #7c2d12, #f97316); }
.pt4 { background-color: #4c1d95; background-image: linear-gradient(135deg, #4c1d95, #8b5cf6); }
.pt5 { background-color: #831843; background-image: linear-gradient(135deg, #831843, #ec4899); }
.pt6 { background-color: #14532d; background-image: linear-gradient(135deg, #14532d, #22c55e); }

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition-slow);
}

.project-card:hover .project-overlay { transform: translateY(0); opacity: 1; }

.project-overlay span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-body { padding: 24px; }

.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.project-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-body h3 a { color: inherit; text-decoration: none; }
.project-body h3 a:hover { color: var(--primary); }

.project-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.project-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.project-link:hover { gap: 12px; }

/* ============================================================
   11. PAGINATION
   ============================================================ */
.pagination,
.navigation.pagination { margin-top: 50px; text-align: center; }

.pagination .nav-links,
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagination .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.pagination .page-numbers:hover,
.navigation.pagination .page-numbers:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary);
}

.pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 55px 0 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  left: 0;
  right: 0;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px 45px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer-brand { max-width: 380px; }

.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-soft);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  line-height: 1.1;
}

.footer-brand .logo span { color: #fff; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0 0 18px 0;
  max-width: 340px;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-brand .footer-logo:hover { opacity: 0.85; }

.footer-brand .footer-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-widget h4,
.footer-widget .widget-title {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after,
.footer-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.footer-contact .ico {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-contact strong {
  color: #e2e8f0;
  font-weight: 600;
  display: block;
  font-size: 0.76rem;
  margin-bottom: 2px;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-word;
}

.footer-contact a:hover { color: var(--primary-soft); }

.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-menu li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-menu li a::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition);
}

.footer-menu li a:hover { color: var(--primary-soft); transform: translateX(4px); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0;
}

.footer-bottom p { margin: 0; }
.footer-bottom strong { color: #e2e8f0; }

/* ============================================================
   13. FLOATING WHATSAPP (MOBILE)
   ============================================================ */
.floating-wa {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
  gap: 10px;
}

.wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.8rem;
  transition: all var(--transition);
  min-width: 0;
}

.wa-btn:hover { background: var(--wa-green-hover); transform: translateY(-2px); color: #fff; }

.wa-btn .wa-ico {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.wa-btn .wa-txt { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; overflow: hidden; }
.wa-btn .wa-txt small { font-size: 0.6rem; font-weight: 500; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.3px; }
.wa-btn .wa-txt span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.76rem; }
.wa-btn.wa-support { background: var(--wa-green-hover); }

/* ============================================================
   14. SINGLE POST / PAGE CONTENT
   ============================================================ */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--text-heading);
  font-weight: 800;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.entry-content h2 { font-size: 1.7rem; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content h4 { font-size: 1.15rem; }
.entry-content p { margin-bottom: 1.2em; }

.entry-content ul,
.entry-content ol { margin-bottom: 1.2em; padding-left: 1.8em; }

.entry-content ul li { list-style: disc; margin-bottom: 0.4em; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.4em; }

.entry-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 20px 24px;
  margin: 1.5em 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-heading);
}

.entry-content code {
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--danger);
  font-family: 'Courier New', monospace;
}

.entry-content pre {
  background: var(--dark);
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5em 0;
}

.entry-content pre code { background: transparent; color: inherit; padding: 0; }
.entry-content img { border-radius: var(--radius-sm); margin: 1em 0; }
.entry-content a { color: var(--primary); text-decoration: underline; }
.entry-content a:hover { color: var(--primary-hover); }

.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }

.entry-content table th,
.entry-content table td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }

.entry-content table th { background: var(--bg-soft); font-weight: 700; color: var(--text-heading); }

/* ============================================================
   15. COMMENTS
   ============================================================ */
.comments-area {
  max-width: 100%;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.comments-title,
.comment-reply-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.comments-title span { color: var(--primary); }

.comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.comment-list .children { list-style: none; padding-left: 50px; margin-top: 12px; }
.comment-list .children .children { padding-left: 40px; }
.comment-list li { list-style: none; }
.comment-body { transition: all var(--transition); }

.comment-author-name a { color: var(--text-heading); text-decoration: none; transition: color var(--transition); }
.comment-author-name a:hover { color: var(--primary); }

.comment-text p { margin-bottom: 0.7em; }
.comment-text p:last-child { margin-bottom: 0; }

.comment-actions a { color: var(--primary); text-decoration: none; font-weight: 700; transition: color var(--transition); }
.comment-actions a:hover { color: var(--primary-hover); }
.comment-actions .comment-reply-link { margin-right: 12px; }

.comment-respond {
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comment-reply-title {
  font-size: 1.2rem;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}

.comment-reply-title small { font-size: 0.8rem; font-weight: 500; margin-left: 12px; }
.comment-reply-title small a { color: var(--danger); text-decoration: none; }

.comment-form { display: flex; flex-direction: column; gap: 16px; }
.comment-form .comment-notes { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.comment-form p { margin: 0; }

.comment-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.comment-form .required { color: var(--danger); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--bg-white);
  transition: border-color var(--transition);
  font-family: inherit;
  color: var(--text);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.comment-form textarea { min-height: 130px; resize: vertical; }

.comment-form .submit,
.comment-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}

.comment-form .submit:hover,
.comment-form button[type="submit"]:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.comment-navigation { display: flex; justify-content: space-between; gap: 20px; margin: 20px 0; }
.comment-navigation a { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.88rem; }
.comment-navigation a:hover { color: var(--primary-hover); }

.no-comments {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-style: italic;
}

/* ============================================================
   16. SEARCH FORM
   ============================================================ */
.search-form { position: relative; display: flex; gap: 8px; max-width: 400px; }

.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--bg-white);
  outline: none;
  transition: border-color var(--transition);
}

.search-form .search-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

.search-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.search-form button[type="submit"]:hover { background: var(--primary-hover); }

/* ============================================================
   17. SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget .widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.sidebar-widget ul li a:hover { color: var(--primary); }

.widget_calendar table { width: 100%; border-collapse: collapse; }
.widget_calendar th,
.widget_calendar td { padding: 8px; text-align: center; border: 1px solid var(--border); font-size: 0.85rem; }
.widget_calendar th { background: var(--bg-soft); font-weight: 700; }

.tagcloud a {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem !important;
  text-decoration: none;
  margin: 4px 4px 4px 0;
  font-weight: 600;
  transition: all var(--transition);
}

.tagcloud a:hover { background: var(--primary); color: #fff; }

/* ============================================================
   18. BREADCRUMBS
   ============================================================ */
.breadcrumbs { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============================================================
   19. SINGLE PRODUK & PORTFOLIO
   ============================================================ */
.single-produk-layout,
.single-portfolio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.single-gallery { position: sticky; top: 90px; }

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  transition: opacity 0.25s ease;
}

.gallery-main .no-image { font-size: 5rem; color: var(--text-light); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  transition: all var(--transition);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { border-color: var(--primary-border); transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }

.single-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.single-info .product-category {
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.single-info .product-badge-single {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.single-info .product-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

.single-info .product-desc p { margin-bottom: 1em; }
.single-info .btn-primary { padding: 14px 36px; }

.product-rating { display: flex; align-items: center; gap: 10px; }
.product-price-box { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* Portfolio */
.portfolio-hero {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-hero img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.portfolio-hero .no-image { font-size: 6rem; color: var(--text-light); padding: 80px 0; }

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.portfolio-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-gallery-item:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); }
.portfolio-gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   20. SPESIFIKASI PRODUK
   ============================================================ */
.product-specs {
  margin-top: 30px;
  margin-bottom: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  padding: 16px 20px;
  margin: 0;
  background: var(--bg-white);
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-table { width: 100%; border-collapse: collapse; margin: 0; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table th {
  text-align: left;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  width: 40%;
  vertical-align: top;
  text-transform: none;
  letter-spacing: 0;
}

.specs-table td {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  vertical-align: top;
}

.specs-table tr:hover { background: rgba(37, 99, 235, 0.03); }

/* ============================================================
   21. RELATED SECTION
   ============================================================ */
.related-section {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.related-header { margin-bottom: 30px; text-align: left; }

.related-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.related-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.3;
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.35s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.related-card * { text-decoration: none; }

.related-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 2.5rem;
  color: #fff;
}

.related-thumb.p1 { background-color: #dbeafe; background-image: linear-gradient(135deg, #dbeafe, #eff6ff); }
.related-thumb.p2 { background-color: #dcfce7; background-image: linear-gradient(135deg, #dcfce7, #f0fdf4); }
.related-thumb.p3 { background-color: #fef3c7; background-image: linear-gradient(135deg, #fef3c7, #fffbeb); }
.related-thumb.p4 { background-color: #fce7f3; background-image: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.related-thumb.p5 { background-color: #e0e7ff; background-image: linear-gradient(135deg, #e0e7ff, #eef2ff); }
.related-thumb.p6 { background-color: #ccfbf1; background-image: linear-gradient(135deg, #ccfbf1, #f0fdfa); }

.related-thumb.bt1 { background-color: #1e3a8a; background-image: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.related-thumb.bt2 { background-color: #134e4a; background-image: linear-gradient(135deg, #134e4a, #14b8a6); }
.related-thumb.bt3 { background-color: #7c2d12; background-image: linear-gradient(135deg, #7c2d12, #f97316); }
.related-thumb.bt4 { background-color: #4c1d95; background-image: linear-gradient(135deg, #4c1d95, #8b5cf6); }

.related-thumb .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.related-thumb .blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.related-body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex-grow: 1; }

.related-cat {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}

.related-meta {
  display: flex;
  gap: 10px;
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.related-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 6px;
  line-height: 1.35;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card:hover .related-name { color: var(--primary); }

.related-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 10px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.related-card:hover .related-link { gap: 8px; }

/* ============================================================
   22. HUBUNGI KAMI PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--primary-light);
}

.contact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.contact-card-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 4px;
  line-height: 1.3;
}

.contact-card-header p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-group .required { color: var(--danger); margin-left: 2px; }
.form-group .optional { color: var(--text-light); font-weight: 500; font-size: 0.8rem; }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
}

.form-hint { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 6px; font-style: italic; }

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 6px;
  font-weight: 600;
  min-height: 0;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
  background: #fef2f2;
}

.wa-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.wa-submit-btn:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
}

.wa-submit-btn:disabled { cursor: not-allowed; opacity: 0.9; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.contact-info-card { margin-bottom: 24px; padding: 26px; }
.contact-info-card:last-child { margin-bottom: 0; }

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}

.contact-info-list { list-style: none; padding: 0; margin: 0; }

.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-list li:first-child { padding-top: 0; }

.info-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.info-text strong {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-word;
}

.info-text a:hover { color: var(--primary); }

.contact-hours { list-style: none; padding: 0; margin: 0; }

.contact-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
}

.contact-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours li:first-child { padding-top: 0; }
.contact-hours span { color: var(--text-muted); }
.contact-hours strong { color: var(--text-heading); font-weight: 700; }
.contact-hours .closed { color: var(--danger); }

.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg-soft);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.contact-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

/* ============================================================
   23. DEFAULT PAGE STYLES
   ============================================================ */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 70px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

body.admin-bar .page-hero { margin-top: 102px; }

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.1);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.08);
  bottom: -120px;
  left: -60px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .page-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.page-hero .page-description {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.page-hero .breadcrumbs { margin-top: 20px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 0; }
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.page-hero .breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.page-hero .breadcrumbs span { color: rgba(255, 255, 255, 0.7); }

.page-content-wrapper { padding: 60px 0 80px; background: var(--bg); }

.page-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 60px;
  box-shadow: var(--shadow-sm);
}

.page-featured-image {
  margin: -50px -60px 40px;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.page-featured-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.page-article .entry-content { font-size: 1.02rem; line-height: 1.85; color: #334155; }
.page-article .entry-content > *:first-child { margin-top: 0; }
.page-article .entry-content > *:last-child { margin-bottom: 0; }

.page-article .entry-content h1 { font-size: 2rem; font-weight: 800; color: var(--text-heading); margin: 1.8em 0 0.7em; line-height: 1.25; }

.page-article .entry-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: 1.6em 0 0.7em;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.page-article .entry-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin: 1.5em 0 0.6em; }
.page-article .entry-content h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin: 1.4em 0 0.5em; }
.page-article .entry-content p { margin-bottom: 1.3em; }
.page-article .entry-content strong, .page-article .entry-content b { color: var(--text-heading); font-weight: 700; }

.page-article .entry-content ul,
.page-article .entry-content ol { margin: 1.3em 0; padding-left: 1.6em; }

.page-article .entry-content ul li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.75;
}

.page-article .entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.page-article .entry-content ol { counter-reset: item; padding-left: 0; }

.page-article .entry-content ol li {
  list-style: none;
  position: relative;
  padding-left: 44px;
  margin-bottom: 12px;
  line-height: 1.75;
  counter-increment: item;
}

.page-article .entry-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.page-article .entry-content blockquote {
  position: relative;
  margin: 1.8em 0;
  padding: 24px 28px 24px 60px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
}

.page-article .entry-content blockquote::before {
  content: '"';
  position: absolute;
  left: 20px;
  top: 10px;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  opacity: 0.5;
}

.page-article .entry-content a { color: var(--primary); text-decoration: none; font-weight: 600; border-bottom: 1px dashed var(--primary-border); transition: all var(--transition); }
.page-article .entry-content a:hover { color: var(--primary-hover); border-bottom-style: solid; }

.page-article .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1.5em auto;
  display: block;
  box-shadow: var(--shadow-sm);
}

.page-article .entry-content code {
  background: var(--bg-soft);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.88em;
  color: var(--danger);
  font-family: 'Courier New', Consolas, monospace;
  border: 1px solid var(--border);
}

.page-article .entry-content pre {
  background: var(--dark);
  color: #e2e8f0;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5em 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-article .entry-content pre code { background: transparent; color: inherit; padding: 0; border: none; font-size: inherit; }

.page-article .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}

.page-article .entry-content table th,
.page-article .entry-content table td { padding: 14px 18px; border: 1px solid var(--border); text-align: left; vertical-align: top; }

.page-article .entry-content table th {
  background: var(--primary-light);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-article .entry-content hr { border: none; height: 1px; background: var(--border); margin: 2em 0; }

.page-article .page-links { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.9rem; font-weight: 700; }

.page-article .page-links a,
.page-article .page-links > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  margin: 0 4px 4px 0;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text-heading);
  text-decoration: none;
  transition: all var(--transition);
}

.page-article .page-links a:hover { background: var(--primary-light); color: var(--primary); }
.page-article .page-links > span { background: var(--primary); color: #fff; }

.page-article .post-edit-link {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.page-article .post-edit-link:hover { background: var(--primary-light); color: var(--primary); }

/* ============================================================
   24. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   25. RESPONSIVE - TABLET (≤968px)
   ============================================================ */
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { height: 350px; max-width: 480px; margin: 0 auto; width: 100%; }

  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }

  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-info-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .contact-info-card { margin-bottom: 0; }

  .page-article { padding: 40px 40px; }
  .page-featured-image { margin: -40px -40px 34px; }
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero .page-description { font-size: 1rem; }
}

/* ============================================================
   26. RESPONSIVE - MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .slide h1 { font-size: 1.85rem; }
  .slide p { font-size: 0.95rem; margin-bottom: 22px; }
  .hero { height: 480px; }
  .slider-arrow { display: none; }
  .slide-tag { font-size: 0.68rem; padding: 5px 14px; }
  .slide-buttons { flex-direction: column; align-items: center; }
  .slide-buttons a { width: 100%; max-width: 240px; text-align: center; padding: 12px 24px; }

  .section-title { margin-bottom: 34px; }
  .section-title h2 { font-size: 1.55rem; }
  .section-title p { font-size: 0.9rem; }

  .about { padding: 60px 0; }
  .about-content h2 { font-size: 1.55rem; }
  .about-content > p { font-size: 0.92rem; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .about-stat .num { font-size: 1.4rem; }
  .about-visual { height: 280px; }
  .about-img-main { font-size: 4rem; }
  .about-img-secondary { font-size: 2.5rem; }

  .products { padding: 60px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-img { height: 130px; font-size: 2.3rem; }
  .product-body { padding: 14px; }
  .product-category { font-size: 0.65rem; }
  .product-body h3 { font-size: 0.9rem; margin-bottom: 6px; }
  .product-body p { font-size: 0.76rem; margin-bottom: 12px; }
  .product-badge { font-size: 0.6rem; padding: 3px 9px; top: 10px; left: 10px; }
  .btn-cek-produk { padding: 9px 12px; font-size: 0.76rem; }

  .blog { padding: 60px 0; }
  .blog-list { gap: 14px; }
  .blog-item { grid-template-columns: 130px 1fr; gap: 0; border-radius: 14px; }
  .blog-thumb { min-height: 130px; height: 100%; font-size: 2.4rem; }
  .blog-thumb .blog-tag { top: 10px; left: 10px; font-size: 0.58rem; padding: 3px 10px; }
  .blog-content { padding: 14px 16px; justify-content: flex-start; }
  .blog-meta { font-size: 0.63rem; gap: 8px; margin-bottom: 6px; }
  .blog-meta span:nth-child(2), .blog-meta span:nth-child(3) { display: none; }
  .blog-content h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-content p { display: none; }
  .blog-read { font-size: 0.76rem; margin-top: auto; }

  .projects { padding: 60px 0; }
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .project-thumb { height: 130px; font-size: 2.5rem; }
  .project-body { padding: 14px; }
  .project-meta { font-size: 0.62rem; gap: 8px; margin-bottom: 6px; }
  .project-body h3 { font-size: 0.9rem; margin-bottom: 6px; }
  .project-body p { font-size: 0.74rem; margin-bottom: 10px; }
  .project-link { font-size: 0.76rem; }
  .project-overlay { display: none; }

  .footer-widgets { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .site-footer { padding-top: 45px; }
  .footer-brand { max-width: 100%; }
  .footer-brand p { font-size: 0.84rem; margin-bottom: 16px; }
  .footer-brand .footer-logo img { max-width: 160px; }
  .footer-bottom { padding: 20px 0 90px; }

  .floating-wa { display: flex; }

  .single-produk-layout, .single-portfolio-layout { grid-template-columns: 1fr; gap: 24px; }
  .single-gallery { position: static; top: auto; }
  .gallery-main { aspect-ratio: 4 / 3; margin-bottom: 10px; border-radius: var(--radius-md); }
  .gallery-main img { padding: 10px; }
  .gallery-main .no-image { font-size: 3.5rem; }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 8px; }
  .single-info h1 { font-size: 1.55rem; margin-bottom: 12px; }
  .single-info .product-category { font-size: 0.7rem; margin-bottom: 8px; }
  .single-info .product-badge-single { font-size: 0.65rem; padding: 4px 12px; margin-bottom: 14px; }
  .single-info .product-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 22px; }
  .single-info .btn-primary { width: 100%; text-align: center; padding: 13px 24px; font-size: 0.9rem; }
  .product-rating { gap: 8px; margin: 10px 0 14px !important; }
  .product-rating span:first-child { font-size: 0.95rem !important; }
  .product-price-box { flex-direction: column; align-items: flex-start !important; gap: 8px !important; padding: 14px 16px !important; margin: 14px 0 18px !important; }
  .product-price-box > div:first-child { font-size: 1.3rem !important; }
  .portfolio-hero { max-height: 300px; margin-bottom: 24px; border-radius: var(--radius-md); }
  .portfolio-hero img { max-height: 300px; }
  .portfolio-hero .no-image { font-size: 4rem; padding: 50px 0; }
  .portfolio-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; margin-bottom: 24px; }

  .product-specs { margin-top: 22px; margin-bottom: 20px; border-radius: var(--radius-sm); }
  .specs-title { font-size: 0.9rem; padding: 12px 16px; }
  .specs-table th, .specs-table td { padding: 10px 14px; font-size: 0.8rem; }
  .specs-table th { width: 45%; font-size: 0.78rem; }

  .related-section { margin-top: 50px; padding-top: 35px; }
  .related-header { margin-bottom: 20px; }
  .related-title { font-size: 1.2rem; }
  .related-label { font-size: 0.7rem; }
  .related-grid { display: flex; flex-direction: column; gap: 12px; }
  .related-card { display: grid; grid-template-columns: 110px 1fr; gap: 0; border-radius: 12px; transform: none !important; }
  .related-card:hover { transform: none; box-shadow: var(--shadow-md); }
  .related-thumb { height: 100%; min-height: 110px; font-size: 2rem; border-radius: 0; }
  .related-thumb .product-badge, .related-thumb .blog-tag { top: 8px; left: 8px; font-size: 0.55rem; padding: 2px 8px; }
  .related-body { padding: 12px 14px; justify-content: flex-start; }
  .related-cat { font-size: 0.6rem; margin-bottom: 3px; }
  .related-meta { font-size: 0.6rem; gap: 8px; margin-bottom: 4px; }
  .related-name { font-size: 0.88rem; margin-bottom: 5px; -webkit-line-clamp: 2; }
  .related-desc { font-size: 0.72rem; margin-bottom: 8px; -webkit-line-clamp: 2; }
  .related-link { font-size: 0.72rem; margin-top: auto; }

  .comments-area { margin-top: 40px; padding-top: 30px; }
  .comments-title { font-size: 1.1rem; }
  .comment-list .children { padding-left: 20px; }
  .comment-list .children .children { padding-left: 15px; }
  .comment-body { padding: 14px !important; gap: 10px !important; }
  .comment-avatar img { width: 36px !important; height: 36px !important; }
  .comment-author-name { font-size: 0.88rem !important; }
  .comment-metadata { font-size: 0.7rem !important; }
  .comment-text { font-size: 0.86rem !important; }
  .comment-respond { padding: 20px; margin-top: 30px; }
  .comment-reply-title { font-size: 1.05rem; }
  .comment-form .submit, .comment-form button[type="submit"] { width: 100%; align-self: stretch; }

  .single-post nav[style*="grid-template-columns:1fr 1fr"],
  .single nav[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .single-post nav[style*="text-align:right"],
  .single nav[style*="text-align:right"] {
    text-align: left !important;
  }
  .single-portfolio-page div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 14px !important; }
  .single-portfolio-page div[style*="text-align:right"] { text-align: left !important; }

  .contact-hero { padding: 50px 0 40px !important; }
  .contact-hero h1 { font-size: 1.7rem !important; }
  .contact-hero p { font-size: 0.92rem !important; }
  .contact-content { padding: 40px 0 60px !important; }
  .contact-card { padding: 24px 20px; border-radius: 14px; }
  .contact-card-header { gap: 12px; margin-bottom: 22px; padding-bottom: 18px; }
  .contact-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.35rem; border-radius: 12px; }
  .contact-card-header h2 { font-size: 1.1rem; }
  .contact-card-header p { font-size: 0.82rem; }
  .form-group { margin-bottom: 16px; }
  .form-group label { font-size: 0.82rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.92rem; }
  .wa-submit-btn { padding: 14px 20px; font-size: 0.95rem; }
  .contact-info-wrapper { grid-template-columns: 1fr; gap: 16px; }
  .contact-info-card { padding: 22px 20px; }

  .page-hero { padding: 50px 0 40px; }
  .page-hero h1 { font-size: 1.65rem; margin-bottom: 12px; }
  .page-hero .page-description { font-size: 0.92rem; }
  .page-hero .page-label { font-size: 0.68rem; padding: 5px 14px; }
  .page-hero .breadcrumbs { font-size: 0.75rem; margin-top: 16px; }
  .page-content-wrapper { padding: 40px 0 60px; }
  .page-article { padding: 28px 20px; border-radius: 14px; }
  .page-featured-image { margin: -28px -20px 24px; }
  .page-featured-image img { max-height: 260px; }
  .page-article .entry-content { font-size: 0.95rem; line-height: 1.75; }
  .page-article .entry-content h1 { font-size: 1.5rem; margin-top: 1.5em; }
  .page-article .entry-content h2 { font-size: 1.3rem; margin-top: 1.4em; }
  .page-article .entry-content h3 { font-size: 1.1rem; }
  .page-article .entry-content blockquote { padding: 18px 20px 18px 46px; font-size: 0.95rem; }
  .page-article .entry-content blockquote::before { left: 14px; top: 6px; font-size: 2.4rem; }
  .page-article .entry-content table { font-size: 0.85rem; }
  .page-article .entry-content table th, .page-article .entry-content table td { padding: 10px 12px; }
  .page-article .entry-content pre { padding: 16px 18px; font-size: 0.82rem; }
}

/* ============================================================
   27. RESPONSIVE - SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .product-grid, .project-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img, .project-thumb { height: 110px; }
  .product-body, .project-body { padding: 12px; }
  .product-body h3, .project-body h3 { font-size: 0.85rem; }
  .btn-cek-produk, .project-link { font-size: 0.72rem; padding: 8px 10px; }
  .blog-item { grid-template-columns: 110px 1fr; }
  .blog-thumb { font-size: 2rem; }
  .blog-content h3 { font-size: 0.86rem; }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); gap: 6px; }
  .single-info h1 { font-size: 1.35rem; }
  .portfolio-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .related-card { grid-template-columns: 95px 1fr; }
  .related-thumb { min-height: 95px; }
  .related-name { font-size: 0.82rem; }
  .related-desc { display: none; }

  .contact-hero h1 { font-size: 1.45rem !important; }
  .contact-card { padding: 20px 16px; }
  .contact-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.2rem; }
  .contact-card-header h2 { font-size: 1rem; }
  .contact-info-list li { padding: 10px 0; }
  .info-ico { width: 36px; height: 36px; min-width: 36px; font-size: 1rem; }
  .info-text a { font-size: 0.86rem; }
  .contact-social a { width: 38px; height: 38px; font-size: 0.92rem; }

  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 1.4rem; }
  .page-article { padding: 22px 16px; }
  .page-featured-image { margin: -22px -16px 20px; }
  .page-article .entry-content h2 { font-size: 1.2rem; }
  .page-article .entry-content h3 { font-size: 1.05rem; }
}

@media (max-width: 380px) {
  .wa-btn .wa-txt small { font-size: 0.55rem; }
  .wa-btn .wa-txt span { font-size: 0.7rem; }
  .wa-btn { font-size: 0.75rem; padding: 10px 6px; }
  .wa-btn .wa-ico { width: 24px; height: 24px; min-width: 24px; font-size: 0.85rem; }
}

/* ============================================================
   28. PRINT STYLES
   ============================================================ */
@media print {
  .site-header, .site-footer, .floating-wa, .slider-arrow, .slider-dots,
  .hamburger, .mobile-menu, .mobile-menu-overlay {
    display: none !important;
  }
  .hero { margin-top: 0; height: auto; min-height: auto; }
  body { background: #fff; color: #000; }
}

/* ============================================================
   END OF FILE
   ============================================================ */

   /* ============================================================
   HERO SLIDER — VIDEO SUPPORT
   ============================================================ */

/* Video sebagai background */
.slide-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* Pastikan slide-content ada di atas video */
.slide-content {
  z-index: 3;
}

/* Overlay tetap ada di atas video */
.slide::before {
  z-index: 2;
  background: rgba(15, 23, 42, 0.3);   /* Rata, ringan */
}

/* Slide dengan video: hilangkan background-color */
.slide-youtube,
.slide-vimeo,
.slide-mp4 {
  background-color: #000;
}

/* Responsive: video tetap cover di mobile */
@media (max-width: 768px) {
  .slide-video-bg {
    min-width: 100%;
    min-height: 100%;
  }
}