body {
  padding-top: 55px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== WRAPPER TENGAH ===== */
.page-wrapper {
  display: flex;
  justify-content: center;
}

#content {
  width: 100%;
}

/* ===== CONTAINER MAKS ===== */
.main-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ===== NAVBAR ===== */
.nav-blur {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* ORDER BUTTON MOBILE */
.btn-grad {
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height:35px;
  box-shadow: 0 4px 10px rgba(13,110,253,.35);
}

/* MENU ICON */
.btn-menu-toggle {
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OFFCANVAS STYLE */
.offcanvas {
  width: 280px;
}

.offcanvas .nav-link {
  font-size: 16px;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero-wrapper {
  background: #e3f0fc;
}

.hero-slide {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-slide h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.hero-slide h1 span {
  color: #0d6efd;
}

.hero-slide p {
  max-width: 500px;
  margin: 20px 0;
  color: #6c757d;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-slide {
    text-align: center;
  }

  .hero-slide p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* PRODUCT OVERLAY */
.product-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* DARK GRADIENT OVER IMAGE */
.product-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15),
    transparent
  );
}

/* OVERLAY CONTENT */
.product-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}

.product-overlay-content h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}

.product-overlay-content span {
  font-size: 13px;
  opacity: .85;
}

/* CART ICON */
.cart-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(13,110,253,.4);
}

/* HOVER EFFECT */
.product-card:hover img {
  transform: scale(1.05);
}

.product-card img {
  transition: transform .4s ease;
}
/* SERVICE SECTION */
.service-section {
  background: #f8f9fa;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}
/* FEATURE SECTION */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* SERVICE CTA SECTION */
.service-cta-section {
  background: #f8f9fa;
}

.service-card-cta {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.service-card-cta .icon {
  font-size: 42px;
  margin-bottom: 16px;
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(13,110,253,.35);
}

.cta-box h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-box p {
  opacity: .9;
  margin-bottom: 20px;
}
/* SERVICE LIST SECTION */
.service-list-section {
  background: #ffffff;
}

.service-list-card {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.service-list-card h5 {
  font-weight: 700;
  margin-bottom: 18px;
  color: #0d6efd;
}

.service-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #495057;
}

.service-list-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-weight: 700;
}
/* TESTIMONIAL SECTION */
.testimonial-section {
  background: #f8f9fa;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card .quote {
  font-size: 15px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author span {
  font-size: 13px;
  color: #6c757d;
}
/* FINAL CTA */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
}

.final-cta-box {
  max-width: 720px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.final-cta-box h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 16px;
  opacity: .95;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta-box small {
  opacity: .85;
}
/* TRUST CTA */
.trust-cta-section {
  background: #ffffff;
}

.trust-cta-box {
  background: #f8f9fa;
  border-radius: 22px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.trust-cta-box h3 {
  font-weight: 800;
  margin-bottom: 12px;
}

.trust-cta-box p {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 28px;
}

.trust-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* CLIENT LOGOS */
.client-logos img {
  max-height: 50px;
  width: auto;
  opacity: .7;
  filter: grayscale(0);
  transition: all .3s ease;
}

.client-logos img:hover {
  opacity: 1;
  filter: grayscale(50%);
}
.google-review-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}
/* WELCOME BAR */
.welcome-bar {
  border-bottom: 1px solid transparent;
  background:#141827;
}


.welcome-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  min-height: 90px;
  gap: 20px;
}

/* LEFT */
.welcome-left h4 {
  margin: 0;
  font-weight: 700;
}

.welcome-left p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6c757d;
}

/* MIDDLE */
.welcome-middle {
  text-align: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 10px 0;
}

.welcome-middle .review-score {
  font-size: 20px;
  font-weight: 800;
  display: block;
}

.welcome-middle small {
  display: block;
  color: #6c757d;
  margin-bottom: 4px;
}

.welcome-middle a {
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

/* RIGHT */
.welcome-right {
  text-align: right;
}

.welcome-right span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #6c757d;
}
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.wa-float img {
  width: 30px;
}
.fake-order {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  z-index: 999;
  display: none;
  animation: slideUp .5s ease;
}


@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .fake-order {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }
}
/* FOOTER BASE */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 20px;
  margin-top: 0px;
}

.site-footer h5,
.site-footer h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  line-height: 1.6;
}

/* GRID DESKTOP */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 25px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

/* CTA */
.footer-cta a {
  margin-top: 8px;
  display: inline-block;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}
/* FOOTER BASE */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.site-footer h5 {
  color: #fff;
  font-weight: 800;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* ACCORDION */
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-header span {
  font-size: 20px;
  transition: transform .3s ease;
}

.accordion-body {
  display: block;
}

/* MOBILE MODE */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .accordion-body {
    display: none;
  }

  .accordion-item.active .accordion-body {
    display: block;
  }

  .accordion-item.active .accordion-header span {
    transform: rotate(45deg);
  }

  .footer-cta a {
    padding: 12px;
    font-size: 15px;
  }

}
.breadcrumb-wrap {
  padding: 14px 0;
  font-size: 14px;
  background: #f8fafc;
}

.breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
  color: #94a3b8;
}
.product-detail {
  padding: 50px 0;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* LEFT */
.product-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spec-box {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
}

.spec-box strong {
  display: block;
  font-weight: 700;
}

/* RIGHT */
.product-right h1 {
  font-weight: 800;
  margin-bottom: 10px;
}

.short-desc {
  color: #475569;
  margin-bottom: 10px;
}

.price {
  font-size: 26px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 15px;
}

.product-desc {
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-advantage {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  margin-bottom: 20px;
}

.product-advantage ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-advantage li {
  margin-bottom: 8px;
  font-weight: 600;
}

/* BUTTONS */
.product-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-spec {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

}
.product-section {
  background: #f5f7fa;
  padding: 60px 0;
}
.product-info {
  background: #f5f7fa;
  padding: 60px 0;
}
/* TAB MENU */
.product-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.product-tabs li {
  padding: 12px 5px;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  position: relative;
}

.product-tabs li.active {
  color: #0d6efd;
}

.product-tabs li.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #0d6efd;
}

/* TAB CONTENT */
.tab-content {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* KEYWORD BOX */
.keyword-box {
  background: #f1f3f5;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* =====================================================
   AI DARK STYLE + SMOOTH ANIMATED GRADIENT HERO
   ===================================================== */

:root{
  /* DARK AI BASE (EYE FRIENDLY) */
  --bg-main:#0a0b10;
  --bg-soft:#0e1018;
  --bg-card:#141827;
  --bg-footer:#07080c;

  /* TEXT */
  --text-main:#f1f5f9;
  --text-muted:#9aa4b2;

  /* AI ACCENT */
  --ai-purple:#8b5cf6;
  --ai-blue:#38bdf8;
  --ai-soft:#c7d2fe;

  /* GRADIENT */
  --grad-hero:linear-gradient(
    120deg,
    #12002b,
    #0a0b10,
    #001b2e,
    #1e003a
  );
  --grad-accent:linear-gradient(135deg,#8b5cf6,#38bdf8);
}

/* ===== GLOBAL ===== */
body{
  background:var(--bg-main);
  color:var(--text-main);
}
p, span, small{
  color:var(--text-muted);
}

/* ===== NAVBAR ===== */
.nav-blur{
  background:rgba(10,11,16,.78);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 40px rgba(0,0,0,.6);
}
.navbar a,
.navbar-brand{
  color:#fff!important;
}

/* ===== BUTTON ===== */
.btn-grad,
.cart-icon{
  background:var(--grad-accent);
  color:#fff;
  box-shadow:0 10px 28px rgba(139,92,246,.45);
  transition:all .35s ease;
}
.btn-grad:hover,
.cart-icon:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 18px rgba(139,92,246,.6),
    0 0 40px rgba(56,189,248,.35);
}

/* ===== HERO (ANIMATED GRADIENT) ===== */
.hero-wrapper{
  background:var(--grad-hero);
  background-size:300% 300%;
  animation:aiGradient 16s ease infinite;
}

@keyframes aiGradient{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.hero-slide h1 span{
  color:var(--ai-soft);
}
.hero-slide p{
  color:var(--text-muted);
}

/* ===== CARD UNIVERSAL ===== */
.service-card,
.service-card-cta,
.service-list-card,
.testimonial-card,
.product-advantage,
.tab-content,
.fake-order,
.spec-box,
.trust-cta-box{
  background:var(--bg-card);
  color:var(--text-main);
  box-shadow:0 20px 55px rgba(0,0,0,.55);
  transition:all .35s ease;
}

/* CARD MICRO ANIMATION */
.service-card:hover,
.service-card-cta:hover,
.service-list-card:hover,
.testimonial-card:hover,
.product-advantage:hover{
  transform:translateY(-5px);
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 0 24px rgba(139,92,246,.25);
}

/* CARD TEXT */
.service-card p,
.service-card-cta p,
.service-list-card ul li,
.testimonial-card .quote,
.short-desc,
.product-desc{
  color:var(--text-muted);
}

/* ===== PRODUCT IMAGE ===== */
.product-card img{
  transition:transform .45s ease;
}
.product-card:hover img{
  transform:scale(1.05);
}

/* ===== PRODUCT OVERLAY ===== */
.product-overlay::after{
  background:linear-gradient(
    to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.35),
    transparent
  );
}

/* ===== SECTION BACKGROUND ===== */
.service-section,
.service-cta-section,
.testimonial-section,
.trust-cta-section,
.product-section,
.product-info,
.breadcrumb-wrap{
  background:var(--bg-soft);
}
,
.welcome-bar{
  background:var(--bg-card);
}

/* ===== ACCENT TEXT ===== */
.price,
.service-list-card h5,
.google-review-link{
  color:var(--ai-soft);
}

/* ===== TABS ===== */
.product-tabs{
  border-bottom:1px solid rgba(255,255,255,.08);
}
.product-tabs li{
  color:var(--text-muted);
}
.product-tabs li.active{
  color:var(--ai-soft);
}
.product-tabs li.active::after{
  background:var(--ai-soft);
}

/* ===== FLOAT ===== */
.wa-float{
  box-shadow:0 10px 28px rgba(0,0,0,.6);
}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--bg-footer);
  color:var(--text-muted);
}
.site-footer h5,
.site-footer h6{
  color:#ffffff;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
}

/* ===== ACCORDION ===== */
.accordion-header{
  color:#ffffff;
}
/* HERO WRAPPER */
.ai-hero {
  background:
    radial-gradient(900px circle at 80% 10%, #1b1f46, transparent 40%),
    linear-gradient(180deg, #04050a, #070816);
}

/* SLIDE */
.ai-hero-slide {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* GRID */
.ai-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
}

/* TEXT */
.ai-hero-text h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.ai-hero-text h1 span {
  color: #7b8cff;
}

.ai-hero-text p {
  color: #cfd3ff;
  max-width: 520px;
}

.ai-tag {
  display: inline-block;
  color: #7b8cff;
  background: rgba(123,140,255,.12);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.ai-hero-cta {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}

.ai-proof {
  display: flex;
  gap: 20px;
  font-size: .85rem;
  color: #9aa0ff;
}

/* SERVICE PANEL */
.ai-hero-panel {
  background: linear-gradient(145deg, #0a0c22, #111538);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #1b2038;
  display: grid;
  gap: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  animation: floatPanel 6s ease-in-out infinite;
}

@keyframes floatPanel {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* PANEL ITEM BASE */
.ai-panel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 18px 20px;
  transition: .35s;
}

/* ICON */
.panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* EXPRESS PRINT */
.ai-panel-item.express {
  background: linear-gradient(145deg, #1a1025, #2a1444);
}

.ai-panel-item.express .panel-icon {
  background: linear-gradient(145deg, #ff3cac, #784ba0);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,60,172,.45);
}

/* OFFSET */
.ai-panel-item.offset {
  background: linear-gradient(145deg, #0c1a2a, #102a46);
}

.ai-panel-item.offset .panel-icon {
  background: linear-gradient(145deg, #2afadf, #4c83ff);
  color: #05141f;
  box-shadow: 0 0 18px rgba(42,250,223,.45);
}

/* HIGHLIGHT */
.ai-panel-item.highlight {
  display: block;
  text-align: center;
  background: linear-gradient(145deg, #1b1f4a, #2a2f6b);
}

/* TEXT */
.ai-panel-item strong {
  color: #fff;
}

.ai-panel-item p {
  margin: 0;
  font-size: .9rem;
  color: #cfd3ff;
}

/* HOVER MICRO-ANIMATION */
.ai-panel-item:hover {
  transform: translateY(-4px) scale(1.02);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .ai-hero-grid {
    grid-template-columns: 1fr;
  }
  .ai-hero-slide {
    padding: 70px 0;
  }
}
/* NAVBAR BASE */
.nav-blur {
  background: rgba(5, 6, 14, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #141827;
  z-index: 1030;
}

/* LOGO */
.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: .3px;
  color: #fff;
}

.navbar-brand span {
  color: #7b8cff;
}

/* NAV LINK */
.navbar-nav .nav-link {
  color: #cfd3ff;
  font-weight: 500;
  position: relative;
  transition: .3s;
}

.navbar-nav .nav-link:hover {
  color: #fff;
}

/* UNDERLINE HOVER (DESKTOP) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7b8cff, #9a6bff);
  transition: .3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* GRADIENT BUTTON */
.btn-grad {
  background: linear-gradient(135deg, #7b8cff, #9a6bff);
  border: none;
  box-shadow: 0 0 18px rgba(123,140,255,.35);
  transition: .35s;
}

.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(123,140,255,.6);
}

/* MOBILE ORDER BUTTON */
.btn-order-mobile {
  padding: 6px 14px;
  font-size: .85rem;
  margin-top:10px;
}

/* MENU TOGGLE */
.btn-menu-toggle {
  background: #0b0d22;
  color: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #1b2038;
  transition: .3s;
}

.btn-menu-toggle:hover {
  background: #15194a;
}

/* OFFCANVAS DARK */
.offcanvas {
  background: linear-gradient(180deg, #050612, #0a0c22);
  color: #fff;
}

.offcanvas-header {
  border-bottom: 1px solid #141827;
}

.offcanvas .nav-link {
  color: #cfd3ff;
  font-size: 1.05rem;
}

.offcanvas .nav-link:hover {
  color: #fff;
}

/* MOBILE CTA */
.offcanvas .btn-primary {
  background: linear-gradient(135deg, #7b8cff, #9a6bff);
  border: none;
  box-shadow: 0 0 18px rgba(123,140,255,.35);
}

/* SAFE AREA MOBILE */
@media (max-width: 576px) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }
}
/* PRODUCT SECTION */
.product-section {
  background: radial-gradient(circle at top, #0b0d22, #050612);
}

/* CARD BASE */
.product-card-modern {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0a0c1e;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
}

/* IMAGE */
.product-thumb {
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* GRADIENT OVERLAY */
.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,6,18,.9),
    rgba(5,6,18,.35),
    transparent
  );
}

/* INFO */
.product-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px;
  z-index: 2;
}

.product-info h6 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.product-info span {
  font-size: 13px;
  color: #b6bbff;
}

/* HOVER EFFECT */
.product-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(123,140,255,.25);
}

.product-card-modern:hover img {
  transform: scale(1.08);
}

/* MOBILE TWEAK */
@media (max-width: 768px) {
  .product-info h6 {
    font-size: 14px;
  }
}
.text-muted {
  color: #aeb3ff !important;
}
/* SERVICE SECTION */
.service-section {
  background: radial-gradient(circle at top, #0b0d22, #050612);
}

/* CARD BASE */
.service-card-modern {
  height: 100%;
  padding: 34px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0a0c1e, #070817);
  border: 1px solid #141827;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

/* COLOR ACCENT */
.service-purple::before,
.service-blue::before,
.service-cyan::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
}

.service-purple::before {
  background: linear-gradient(135deg, #7b8cff, transparent);
}

.service-blue::before {
  background: linear-gradient(135deg, #4da3ff, transparent);
}

.service-cyan::before {
  background: linear-gradient(135deg, #22d3ee, transparent);
}

/* ICON */
.service-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

/* TITLE */
.service-card-modern h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* DESC */
.service-card-modern p {
  color: #b6bbff;
  font-size: 14px;
  line-height: 1.6;
}

/* FEATURE LIST */
.service-feature {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-feature li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e2e4ff;
}

.service-feature li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7b8cff;
  font-weight: 700;
}

/* HOVER */
.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(123,140,255,.25);
}
/* FEATURE SECTION */
.feature-section {
  background: radial-gradient(circle at left, #0b0d22, #050612);
}

/* BADGE */
.feature-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b8cff, #9a6bff);
  color: #fff;
  box-shadow: 0 0 18px rgba(123,140,255,.35);
}

/* TEXT */
.feature-section h2 {
  color: #fff;
}

.feature-section .text-muted {
  color: #b6bbff !important;
  max-width: 480px;
}

/* FEATURE LIST */
.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-modern li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #e2e4ff;
}

.feature-list-modern li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7b8cff;
  font-weight: 700;
}

/* IMAGE WRAP */
.feature-image-wrap {
  max-width: 420px;      /* 🔑 supaya tidak kebesaran */
  margin-left: auto;
  background: linear-gradient(180deg, #0a0c1e, #070817);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.feature-image-wrap img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-image-wrap {
    margin: 0 auto;
  }
}
/* SERVICE LIST SECTION (LIGHT PREMIUM) */
.service-list-section {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* CARD BASE */
.service-list-card-modern {
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* ACCENT STRIP */
.service-list-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 22px 22px 0 0;
}

/* COLOR VARIATION */
.accent-blue::before {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.accent-purple::before {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

/* TITLE */
.service-list-card-modern h5 {
  font-weight: 800;
  margin-bottom: 18px;
  color: #0f172a;
}

/* LIST */
.service-list-card-modern ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list-card-modern li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
}

/* CHECK ICON */
.service-list-card-modern li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
}

/* HOVER */
.service-list-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(99,102,241,.18);
}

/* TEXT MUTED FIX (LIGHT MODE) */
.service-list-section .text-muted {
  color: #64748b !important;
}
.fw-bolds{color:#111}


/* GRID LAYOUT */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Desktop: kiri 45%, kanan 45% */
.product-left,
.product-right {
  flex: 1 1 45%;
}

/* RESPONSIVE: HP < 768px jadi 1 kolom */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
  }
  .product-left,
  .product-right {
    flex: 1 1 100%;
  }
}


/* IMAGE */
.product-image {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* BREADCRUMB MODERN */
.breadcrumb-modern {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.8rem;
}
.breadcrumb-modern a {
  color: #555;
  text-decoration: none;
}
.breadcrumb-modern span {
  color: #333;
  font-weight: 500;
}

/* PRODUCT SPEC MODERN DARK */
/* SPEC GRID 3 KOLM TETAP */
.modern-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.spec-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.spec-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.spec-icon {
  width: 32px;
  height: 32px;
}
.spec-red { color: #ff6b6b; }
.spec-blue { color: #4d9cff; }
.spec-green { color: #32d48e; }

/* TETAP 3 KOLM DI HP */
@media (max-width: 768px) {
  .modern-spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* PRODUCT DETAIL */
.product-right h1 {
  margin: 0.5rem 0;
  font-size: 2rem;
}
.price {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 1rem 0;
}
.product-advantage ul {
  padding-left: 1rem;
}

/* BUTTONS MODERN GRADIENT */
/* BUTTONS MODERN GRADIENT */
.product-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap; /* optional, biar responsif */
}

.product-actions .btn {
  padding: 0.7rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Tombol Gradient Ungu Modern */
.btn-gradient {
  background: linear-gradient(135deg, #9b5de5, #f15bb5);
  color: #fff;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 93, 229, 0.5);
}

/* Outline Ungu */
.btn-gradient-outline {
  background: transparent;
  border: 2px solid #9b5de5;
  color: #9b5de5;
}
.btn-gradient-outline:hover {
  background: #9b5de5;
  color: #fff;
}

/* WhatsApp Gradient */
.btn-gradient-whatsapp {
  background: linear-gradient(135deg, #25d366, #12b347);
  color: #fff;
}
.btn-gradient-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.5);
}

/* RESPONSIVE: 1 KOLM LEBAR 100% DI HP */
@media (max-width: 768px) {
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn {
    width: 100%;
  }
}
.css-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.css-slider .slides {
  display: flex;
  width: calc(100% * <?= count($images) ?>);
  transition: transform 0.5s ease;
}

.css-slider .slide {
  width: 100%;
  flex-shrink: 0;
}

.css-slider .slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Navigation dots */
.css-slider .navigation {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.css-slider .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.css-slider input[type="radio"] {
  display: none;
}

.product-advantage ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-advantage li {
    display: flex;
    align-items: center;
    gap: 8px; /* jarak antara icon dan text */
    margin-bottom: 8px;
    font-size: 16px; /* huruf lebih besar */
    color: #333;
}

.product-advantage .check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: #22c55e; /* hijau modern */
}
/* Container deskripsi */
#tab-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
	padding:40px 20px;
}

#tab-desc p {
	margin:2px 0;
	line-height:20px;
}
/* Style untuk list */
#tab-desc ul,
#tab-desc ol {
    padding-left: 1.5rem; /* jarak dari tepi container */
    margin-bottom: 1rem;
}

#tab-desc li {
    margin-bottom: 0.5rem;
}

/* Style untuk table */
#tab-desc table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    table-layout: auto;
}

#tab-desc th,
#tab-desc td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

#tab-desc th {
    background-color: #f5f5f5;
    font-weight: 600;
}

#tab-desc tr:nth-child(even) {
    background-color: #fafafa;
}

#tab-desc tr:hover {
    background-color: #f1f1f1;
}

/* Optional: responsive table di HP */
@media (max-width: 768px) {
    #tab-desc table,
    #tab-desc thead,
    #tab-desc tbody,
    #tab-desc th,
    #tab-desc td,
    #tab-desc tr {
        display: block;
        width: 100%;
    }

    #tab-desc tr {
        margin-bottom: 1rem;
    }

    #tab-desc td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    #tab-desc td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 15px);
        text-align: left;
        font-weight: 600;
    }
}
.product-keywords .info-box {
    width: 100%;
    margin: 0;
    padding: 14px 16px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;

    color: #fff;
    border-radius: 0; /* kotak */
    box-shadow: 0 6px 20px rgba(0,0,0,.15);

    transition: transform .2s ease, box-shadow .2s ease;
}

.product-keywords .info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* WARNA GRADIENT RANDOM */
.bg-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.bg-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.product-keywords .info-box a {
    color: inherit;
    text-decoration: none;
    display: block;
}





.product-keywords .info-box a {
    color: inherit;
    text-decoration: none;
    display: block;
}
.product-card-modern {
  display: flex;
  flex-direction: column; /* default: gambar atas, text bawah */
  text-decoration: none;
}

/* Desktop boleh beda layout kalau mau */
@media (min-width: 768px) {
  .product-card-modern {
    flex-direction: column; /* bisa ubah ke row kalau mau */
  }
}

.product-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 10px 5px;
}.product-card-modern {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.product-card-modern:hover {
  transform: translateY(-5px);
}

.product-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h6 {
  font-size: 14px;
  margin: 5px 0;
}

.product-info span {
  font-size: 12px;
  color: #666;
}