

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
 font-family: 'Plus Jakarta Sans', sans-serif;
  background: #eff0f1;
}
a { text-decoration: none; color: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  background: #0d0021;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {height:64px;width:auto}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: #c0bdd8;
  letter-spacing: 0.6px;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
  text-transform:uppercase;
}
.nav-links a:hover { color: #f16331; }
.nav-links a.active {
  color: #f16331;
}
/* Orange underline dot for active */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f16331;
}

/* CTA Button */
.btn-hubungi {
  background: #f16331;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.btn-hubungi:hover {
  background: #ff8124;
  transform: translateY(-1px);
}


/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  background:#0d0021 ;
   
  padding-top: 0;
  padding-bottom: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}



.hero .container {
  display: flex;
  align-items: center;
  min-height: 60px;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* ── LEFT CONTENT ── */
.hero-left {
  flex: 0 0 42%;
  max-width: 420px;
  padding: 0 0 40px;
  padding-top:60px;
}

.hero-brand {
  font-size: 42px;
  font-weight: 900;
  color: #f16331;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 400;
  color: #a09cbf;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 320px;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #f16331;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero-primary:hover {
  background: #ff8124;
  transform: translateY(-2px);
}
.btn-hero-primary i { font-size: 16px; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #e0ddf5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(200,195,230,0.35);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-outline i { font-size: 14px; }

/* ── RIGHT IMAGE ── */
.hero-right2 {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  /* Fade image edges into the dark bg */
  
  -webkit-mask-image:
    linear-gradient(to left, transparent 0%, rgba(0,0,0,0.1) 5%, black 20%),
	linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 5%, black 20%),
   
	linear-gradient(to top, transparent 0%, black 15%);
	
  mask-image:
     linear-gradient(to left, transparent 0%, rgba(0,0,0,0.1) 5%, black 20%),
	linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 5%, black 20%),
    
	linear-gradient(to top, transparent 0%, black 15%);
	
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;

    -webkit-mask-image:
        linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 20%),
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 20%),
        linear-gradient(to top, transparent 0%, black 15%),
        linear-gradient(to bottom, transparent 0%, black 15%);

    mask-image:
        linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 20%),
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 20%),
        linear-gradient(to top, transparent 0%, black 15%),
        linear-gradient(to bottom, transparent 0%, black 15%);

    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}


.hero-img {
  width: 100%;
  max-width: 700px;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
 
  background: #1a1530;
}

/* Placeholder graphic when no real image is set */
.hero-img-placeholder {
  width: 100%;
  max-width: 620px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  border: 1.5px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  letter-spacing: 0.5px;
}
.hero-img-placeholder i { font-size: 48px; opacity: 0.25; }


/* ── FEATURES BAR ── */
.hero-features {
  
  padding: 22px 0 40px 0;
  position: relative;
  z-index: 2;
}
.hero-features .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.feat-icon-wrap {
  
}
.feat-icon-wrap i {
  font-size: 22px;
  color: #f16331;
}
.feat-text-wrap {}
.feat-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #e8e5f5;
  letter-spacing: 0.2px;
  margin-bottom: 1px;
}
.feat-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: #7572a0;
}

/* Divider between feat items */
.feat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.05);
}


/* ── BLOG HERO ── */
.blog-hero {
  position: relative;
  background: #0d0021;
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}


.blog-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(37,99,235,.35) 0%, transparent 70%);
  pointer-events: none;
}


.blog-hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(99,179,237,.4) 38px,
      rgba(99,179,237,.4) 39px
    ),
  
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(99,179,237,.4) 38px,
      rgba(99,179,237,.4) 39px
    );
  background-size: 39px 39px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
}


.blog-hero-circuit::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(147,197,253,.7) 1.5px, transparent 1.5px);
  background-size: 39px 39px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.blog-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-hero { padding: 44px 0; }
  .blog-hero-title { font-size: 26px; }
}


/* ─── SHARED SECTION HEADER ─── */
.section-label {
  font-size: 14px;
  font-weight: 700;
  color: rgb(26, 115, 232);
 
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 14px;
  font-weight: 400;
  color: #5a5e67;
  text-align: center;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 48px auto;
}


/* ══════════════════════════════════════
   SECTION: PRODUK UNGGULAN
══════════════════════════════════════ */
.section-products {
  background: #eff0f1;
  padding: 60px 0 70px;
}
.section-products .section-sub {
  margin-bottom: 48px;
}

/* Cards Grid */
.products-grid {
  display: flex;
  gap: 20px;
justify-content: space-between;
  align-items: stretch;
}

.product-card {
  background: #f6f6f6;
  border-radius: 5px;
  flex: 1;
  min-width: 0;
  max-width: 200px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
 
}
.product-card:hover {
  transform: translateY(0px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Image area – light gray bg */
.product-img-area {
  background: #f6f6f6;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  overflow: hidden;
}
.product-img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .product-img-area img {
  transform: scale(1.06);
}

/* Image fallback / placeholder */
.product-img-area .img-placeholder {
  font-size: 52px;
  opacity: 0.55;
  transition: transform 0.3s;
}
.product-card:hover .img-placeholder {
  transform: scale(1.06);
}

/* Text area */
.product-info {
  padding: 16px 10px 20px;
  text-align:center;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 7px;
 
}
/* Orange dash under name */
.product-name-line {
  width: 20px;
  height: 2px;
  background: rgb(26, 115, 232);
  border-radius: 2px;
  margin-top:10px;
  margin-bottom: 10px;
  margin-left:auto;
  margin-right:auto;
  
}
.product-desc {
  font-size: 12px;
  font-weight: 400;
  color: #5a5e67;
  line-height: 1.65;
}





/* =========================
   SLIDER WRAPPER
========================= */

.products-slider {
  position: relative;
  width: 100%;
}

/* =========================
   DESKTOP SLIDER
========================= */

.products-grid {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;

  padding-bottom: 5px;
}

.products-grid::-webkit-scrollbar {
  display: none;
}

/* 5 card tetap */
.product-card {
  background: #f6f6f6;
  border-radius: 5px;

  flex: 0 0 calc((100% - 80px) / 5);

  min-width: 0;
  overflow: hidden;

  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* =========================
   NAV BUTTON
========================= */

.slider-btn {
  position: absolute;

  /* benar-benar center vertikal */
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: white;
  color: #111;

  font-size: 22px;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  z-index: 10;

  transition: 0.25s;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.prev-btn {
  left: -18px;
}

.next-btn {
  right: -18px;
}

/* =========================
   IMAGE AREA
========================= */

.product-img-area {
  background: #f6f6f6;
  height: 190px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px 10px;
  overflow: hidden;
}

.product-img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .product-img-area img {
  transform: scale(1.06);
}

/* =========================
   TEXT AREA
========================= */

.product-info {
  padding: 16px 10px 20px;
  text-align: center;
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 7px;
}

.product-name-line {
  width: 20px;
  height: 2px;
  background: rgb(26,115,232);
  border-radius: 2px;

  margin: 10px auto;
}

.product-desc {
  font-size: 12px;
  color: #5a5e67;
  line-height: 1.65;
}

/* =========================
   MOBILE & TABLET
========================= */


@media (max-width: 600px) {

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;

    overflow: visible;
  }

  .product-card {
    flex: unset;
    width: 100%;
    max-width: 100%;
  }

  /* tombol hilang di mobile */
  .slider-btn {
    display: none;
  }

}

@media (min-width: 601px) and (max-width: 991px) {

  .products-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;

    overflow: visible;
  }

  .product-card {
    flex: unset;
    width: 100%;
    max-width: 100%;
  }

  /* tombol hilang di mobile */
  .slider-btn {
    display: none;
  }

    .product-card

 {
        max-width: 100% !important;
    }

}










/* ══════════════════════════════════════
   SECTION: BRAND
══════════════════════════════════════ */
.section-brands {
  background: #eff0f1;
  padding: 20px 0 56px;
  border-top: 1px solid #f0f0f0;
}


/* Brand Logos Row */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 0 10px;
  max-width: 1050px;
    margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  user-select: none;
}
.brand-logo:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Individual brand styles matching the screenshot */
.brand-asus {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.brand-acer {
  font-family: 'Arial', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #83b81a;
  letter-spacing: -0.5px;
}

.brand-lenovo {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #e2231a;
  letter-spacing: 0.5px;
}

/* HP – with oval border shape */
.brand-hp-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #0096d6;
  position: relative;
}
.brand-hp {
  font-family: 'Arial', sans-serif;
  font-size: 21px;
  font-weight: 900;
  font-style: italic;
  color: #0096d6;
  letter-spacing: -1px;
  line-height: 1;
}

.brand-dell {
  font-family: 'Arial', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #007db8;
  letter-spacing: 3px;
}

/* MSI – with small shield icon */
.brand-msi-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-msi-shield {
  font-size: 18px;
  color: #cc0000;
}
.brand-msi {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #cc0000;
  letter-spacing: 1px;
}

/* Intel */
.brand-intel-wrap {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.brand-intel {
  font-family: 'Arial', sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: #0068b5;
  letter-spacing: -0.5px;
}
.brand-intel-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #0068b5;
  margin-left: 2px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* Brand note */
.brands-note {
  text-align: center;
  font-size: 14px;
  color: #5a5e67;
  font-weight: 400;
  letter-spacing: 0.1px;
}




/* =========================
   BRAND LOGOS
========================= */

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  flex-wrap: wrap;

  width: 100%;
}

/* item */
.brand-item {
  flex: 1;
  min-width: 90px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* logo */
.brand-item img {
  max-width: 120px;
  width: 100%;
  height: 55px;

  object-fit: contain;

  transition: 0.3s ease;
}

/* hover */
.brand-item:hover img {
  transform: scale(1.06);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .brand-logos {
    gap: 30px;
    justify-content: center;
  }

  .brand-item {
    flex: 0 0 calc(25% - 30px);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .brand-logos {
    gap: 25px 20px;
  }

  .brand-item {
    flex: 0 0 calc(33.333% - 20px);
  }

  .brand-item img {
    max-width: 90px;
    height: 44px;
  }

}







.services {
  position: relative;
  padding: 60px 20px 80px 20px;
  overflow: hidden;
  color: #fff;
 
 background:  radial-gradient(circle at top right, rgba(255, 100, 200, 0.25), transparent 40%),linear-gradient(80deg, #0d0021 0%, #0d0021 40%, #200a3d 70%, #30104a 100%);
}

/* =========================
   GARIS MELINGKAR KIRI ATAS
   ========================= */
.services::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: -200px;

}

/* =========================
   DOT SQUARE KANAN ATAS
   ========================= */
.services::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 10px;
  right: 8px;

  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 15px 15px;

  opacity: 0.4;
}



/* SVG background lines */
.bg-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.08;
}

.bg-lines path {
  stroke: #fff;
  stroke-width: 1;
  fill: none;
}

/* container */
.container-service {
  
  text-align: center;
  position: relative;
  z-index: 2;
}

.label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #ff7a3d;
  margin-bottom: 12px;
  display: block;
}

.services h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 14px;
 color: #8b879e;
  margin-bottom: 60px;
  line-height: 1.6;
  max-width:450px;
  margin-left:auto;
  margin-right:auto;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

/* CARD */
.card {
  padding: 34px 26px;
  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(12px);

  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(0);
  border-color: rgba(255,255,255,0.2);
}

/* ICON */
.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;

  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG styling */
.icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  fill: none;
}

/* warna + neon */
.icon.orange {
  background: rgba(241,99,49,0.08);
  border: 1px solid #d876343d;
 
}
.icon.orange svg {
  stroke: #ff7a3d;
}

.icon.purple {
  background: rgba(140,80,255,0.08);
  border: 1px solid #a09cbf42;
}
.icon.purple svg {
  stroke: #b388ff;
}

.icon.pink {
  background: rgba(255,70,150,0.08);
  border: 1px solid #d834c23d;
}
.icon.pink svg {
  stroke: #ff4da6;
}

/* TEXT */
.card h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
 color: #8b879e;
  line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 1000px){
  .grid {
    grid-template-columns: repeat(2,1fr);
  }
}


/* ══════════════════════════════════════
   SECTION: PROFILE
══════════════════════════════════════ */
.section-profile {
  background: #f4f5f7;
  padding: 60px 0 75px;
}



/* Two-column layout */
.profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* ── LEFT: Image ── */
.profile-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.12);
  line-height: 0; /* remove inline gap */
}
.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Placeholder if no real image */
.profile-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8ecf0, #d5dbe2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #a0aab8;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.profile-img-placeholder span { font-size: 48px; }

/* ── RIGHT: Text ── */
.profile-text p {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}
.profile-text p:last-of-type { margin-bottom: 36px; }

/* Stats Row */
.stats-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.stat-item {}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: rgb(26, 115, 232);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 7px;
}

.stat-label-top {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.stat-label-sub {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

/* Divider between stats */
.stat-divider {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
  align-self: center;
}


/* ══════════════════════════════════════
   SECTION: KONTAK
══════════════════════════════════════ */
.section-contact {
  background: #eff0f1;
  padding: 60px 0 70px;
}




/* ── TWO COLUMN LAYOUT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
  align-items: start;
  margin-top:20px
}

/* ════════════════════════
   LEFT: Contact List
════════════════════════ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
}
.contact-item:hover {
  transform: translateX(0);
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}

.contact-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon circle */
.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
/* Per-brand colors */
.c-icon.wa  { background: #e9faf0; color: #25d366; }
.c-icon.ig  { background: #fef0f5; color: #e1306c; }
.c-icon.loc { background: #fef2f2; color: #ea4335; }
.c-icon.tp  { background: #edfbf0; color: #42b549; }
.c-icon.sh  { background: #fff1ec; color: #ee4d2d; }
.c-icon.em  { background: #eff6ff; color: #3b82f6; }

.c-text-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.c-text-sub {
  font-size: 11.5px;
  font-weight: 400;
  color: #9ca3af;
}

.c-chevron {
  color: #d1d5db;
  font-size: 12px;
  flex-shrink: 0;
}

/* ════════════════════════
   RIGHT: Map + Info
════════════════════════ */
.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Map Card */
.map-card {
    background: #f6f6f6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 10px;
	}


/* Bottom store info cards */
.store-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.store-info-card {
  
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  
}
.si-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #005fff;
  font-size: 20px;
}
.si-icon.blue {
 
  color: #005fff;
}
.si-label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}
.si-value {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  position: relative;
  background: #0d0021;
  overflow: hidden;
}

.site-footer2::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(241 49 171 / 22%) 0%, rgb(238 49 241 / 8%) 45%, transparent 70%);
    pointer-events: none;
}



/* ── FOOTER MAIN ── */
.footer-main {
  padding: 52px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* ── COL 1: Brand ── */
.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.footer-logo img {height:64px;width:auto;}

.footer-logo-icon {
  width: 38px;
  height: 34px;
  flex-shrink: 0;
}
.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}
.footer-logo-text {}
.footer-logo-text .ln1 {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.footer-logo-text .ln2 {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #6b6880;
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
  color: #9b96b8;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b96b8;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(241, 99, 49, 0.2);
  border-color: rgba(241, 99, 49, 0.35);
  color: #f16331;
}

/* ── COL 2: Informasi ── */
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color:#cd69ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li a {
  font-size: 14px;
  font-weight: 400;
  color: #9b96b8;
  transition: color 0.2s;
}
.footer-nav li a:hover {
  color: #ffffff;
}

/* ── COL 3: Kontak ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.fci-icon {
  width: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fci-icon i {
  font-size: 14px;
  color:#cd69ff;
}
.fci-text {
  font-size: 14px;
  font-weight: 400;
  color: #9b96b8;
  line-height: 1.6;
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  text-align: center;
}
.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #4d4862;
}

section[id] {
  scroll-margin-top: 40px;
}

.footer-widget-area {color:#9b96b8;}
.footer-widget-area h2 {font-size:18px;margin-bottom:10px;}

@media (max-width: 768px) {

.hero-right {display:none}


.hero-features .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-direction: column;
}
.feat-divider {display:none}
.hero-features {
    padding: 0px 0 40px 0px;
	
	}
	
	.feat-icon-wrap i {
   
    width: 25px;
}



.products-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
}
.product-card {
    
    max-width: 300px;
	}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
	
	}


    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

.profile-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
}

.stats-row {
    display: flex;
    gap: 10px;
	}
	
	.contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
	}
	
	
	.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.store-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.site-footer::before {display:none;}


.product-info {
    padding: 16px 30px 30px;
    text-align: center;
}

}


/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff; /* sesuaikan dengan warna teks navbar Anda */
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animasi X saat menu terbuka */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .btn-hubungi {
    display: none; /* sembunyikan CTA di header, akan muncul di menu */
  }

  .container {
    position: relative;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #0d0021; /* sesuaikan warna background */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 80px;
  }

  nav.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
	display: flex;
	align-items: flex-start;
  }

  .nav-links li a {
    display: block;
    padding: 16px 28px;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.2s;
    text-decoration: none;
	font-weight:normal;
    color: #fff;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
   font-weight:600;
    color: #ff5724;
  }
  .nav-links a.active::after {display:none}

  /* Tombol HUBUNGI KAMI di dalam menu mobile */
  .nav-links::after {
    content: "HUBUNGI KAMI";
    display: block;
    margin: 24px 20px 0;
    padding: 13px 20px;
    text-align: center;
    background: #f16331;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Overlay gelap di belakang menu */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }
}

/* Ubah z-index nav lebih tinggi dari overlay */
@media (max-width: 768px) {
  

  .nav-overlay {
    z-index: 100; 
  }

  
}

