  /* Anchor jump (no smooth scrolling per request) */

  /* Disable all title highlight effects */
  .title-flash { animation: none !important; text-shadow: none !important; filter: none !important; }
  .section-title.title-flash::after { content: none !important; }

  /* Disable section flash as well */
  .section-flash { animation: none !important; }

  /* Reveal on scroll: fade-in + slide-up with optional stagger */
  .reveal-up {
    opacity: 0;
    transform: translateY(26px) scale(.97);
    transition: opacity .85s cubic-bezier(.22,.7,.24,1), transform .85s cubic-bezier(.22,.7,.24,1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
  }
  .reveal-up.in {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Smaller text for Keunggulan cards */
  #keunggulan .feature.has-icon.center-card h3 {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.25;
    font-weight: 600;
    /* Reserve space for up to 2 lines so paragraphs align across cards */
    min-height: 2.6em; /* 2 * 1.3em approx; matches line-height for two lines */
    text-wrap: balance;
    /* Clamp to 2 lines to prevent overflow causing misalignment */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  /* Normalize and clamp description lines in Keunggulan cards */
  #keunggulan .feature p.sub {
    text-wrap: balance;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    /* Reserve space for up to 2 lines */
    line-height: 1.4;
    min-height: 4.2em; /* ~3 lines */
  }

  /* Footer bottom divider */
  .footer-bottom {
    border-top: 1px solid rgba(191,232,255,.16);
    margin-top: 18px;
    padding-top: 12px;
  }

  /* Footer link color + width adjustments */
  .footer .footer-list a { color: inherit; text-decoration: none; }
  .footer .footer-list a:hover { color: #eaf6ff; text-decoration: underline; text-underline-offset: 3px; }
  /* keep the first column from stretching too wide */
  .footer .footer-inner { gap: 28px; }
  .footer .footer-inner .footer-col:first-child { max-width: 640px; }
  .footer .footer-list span { display: inline-block; word-break: break-word; overflow-wrap: anywhere; }

  /* Footer contact list layout: label/value columns aligned */
  .footer .footer-list { list-style: none; margin: 0; padding: 0; }
  .footer .footer-list li { display: grid; grid-template-columns: minmax(92px, 34%) 1fr; gap: 12px; align-items: start; margin: 0 0 10px; }
  .footer .footer-list strong { display: block; text-align: left; }
  .footer .footer-list span { line-height: 1.5; }

  #tentang .section-sub { line-height: 2.0; }
  #tentang .section-sub br { display: block; margin-top: 30px; content: ""; }

  /* About intro styled lines */
  #tentang .about-intro { margin: 0 0 20px; }
  #tentang .about-intro .intro-line {
    margin: 0 0 14px;
    text-align: justify;
    font-weight: 400;
    opacity: .96;
  }
  #tentang .about-intro .intro-line:last-child { margin-bottom: 0; }
  #tentang .about-intro .accent { color: #bfe8ff; font-weight: 600; }
  #tentang .about-intro .badge-ecat {
    display: inline-block; padding: 4px 8px; border-radius: 999px;
    background: rgba(59,130,246,.15); color: #d7f3ff; border: 1px solid rgba(191,232,255,.22);
  }

  /* About stats: 4 grid including e-catalog */
  #tentang .about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: clamp(12px, 2vw, 18px);
    margin: 22px 0 10px;
  }
  #tentang .about-stats .stat {
    background: linear-gradient(160deg, rgba(15,23,42,.35), rgba(7,23,36,.22));
    border: 1px solid rgba(191,232,255,.14);
    border-radius: 14px;
    padding: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    display: flex; flex-direction: column;
  }
  #tentang .about-stats .stat-value {
    font-weight: 700;
    font-size: clamp(18px, 2vw, 22px);
    display: flex; align-items: center; gap: 8px;
    min-height: 34px; /* normalize height so labels align */
  }
  #tentang .about-stats .stat-value span { font-weight: 700; }
  #tentang .about-stats .stat-label { opacity: .85; font-size: clamp(12px, 1.1vw, 13px); margin-top: 6px; }

  /* E-catalog accent (subtle, same base tone as others) */
  #tentang .about-stats .stat.ecatalog {
    background: linear-gradient(160deg, rgba(15,23,42,.35), rgba(7,23,36,.22));
    border-color: rgba(191,232,255,.14);
  }
  #tentang .about-stats .stat.ecatalog .stat-icon {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(191,232,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
  #tentang .about-stats .stat.ecatalog .stat-text { letter-spacing: .3px; }

  /* Mobile layout for Tentang stats: 2 columns then 1 column on very small screens */
  @media (max-width: 760px) {
    #tentang .about-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 420px) {
    #tentang .about-stats { grid-template-columns: 1fr; }
  }

  /* Center last row (2 items) in first grid of #layanan (Perdagangan Besar) */
  #layanan .container > .feature-grid:first-of-type > article:nth-last-child(2) { grid-column: 2; }
  #layanan .container > .feature-grid:first-of-type > article:nth-last-child(1) { grid-column: 3; }
  @media (max-width: 900px) {
    #layanan .container > .feature-grid:first-of-type > article:nth-last-child(2),
    #layanan .container > .feature-grid:first-of-type > article:nth-last-child(1) { grid-column: auto; }
  }

  /* Keunggulan: 5-column grid on large screens */
  #keunggulan .feature-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  @media (max-width: 1200px) {
    #keunggulan .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  }
  @media (max-width: 700px) {
    #keunggulan .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }

  /* Navbar dropdown */
  .navbar .menu { display: flex; gap: 18px; align-items: center; }
  .navbar .menu .menu-item { position: relative; }
  .navbar .menu .menu-item > .dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .navbar .menu .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    margin-top: 0;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(191,232,255,.18);
    background: linear-gradient(150deg, rgba(2,6,23,.82), rgba(15,23,42,.82));
    backdrop-filter: saturate(130%) blur(6px);
    box-shadow: 0 18px 48px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 50;
  }
  .navbar .menu .menu-item:hover .dropdown-menu,
  .navbar .menu .menu-item:focus-within .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
  /* Invisible bridge so hover doesn't collapse when moving into the dropdown */
  .navbar .menu .menu-item.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px; /* matches the calc gap */
  }
  .navbar .menu .dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #eaf6ff;
    white-space: nowrap;
  }
  .navbar .menu .dropdown-menu a:hover {
    background: rgba(191,232,255,.10);
  }

  /* Ensure scroll position accounts for fixed navbar when jumping to anchors */
  #layanan .feature.has-icon[id] { scroll-margin-top: 90px; }
/* Reset ringkas */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: #f8fafc;
  background: radial-gradient(1100px 560px at 70% 42%, rgba(34, 211, 238, 0.32) 0%, rgba(59, 130, 246, 0.22) 38%, rgba(0, 0, 0, 0) 70%),
              linear-gradient(160deg, #071724 0%, #0a1220 100%);
  background-attachment: fixed;
}

.page-wrap { min-height: 100%; display: flex; flex-direction: column; }
.container { width: min(1120px, 92%); margin-inline: auto; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0;
}
.brand { font-weight: 800; letter-spacing: 0.5px; color: #eaf6ff; text-decoration: none; }
.brand:visited { color: #eaf6ff; }
.brand:hover { text-decoration: none; opacity: 1; }
.menu { display: none; gap: 22px; }
.menu a { color: #e5e7eb; text-decoration: none; font-weight: 500; opacity: 0.9; }
.menu a:hover { opacity: 1; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.btn-glass { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 4px 20px rgba(0,0,0,.15) inset; }
.btn-glass:hover { background: rgba(255,255,255,.14); }
.btn.is-disabled { pointer-events: none; cursor: default; opacity: .6; }
.nav-spacer { display: inline-flex; width: 124px; min-height: 44px; }

  /* Mobile nav toggle (hamburger) - minimalist */
  .nav-toggle { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; gap: 3px; border: 0; background: transparent; color: #eaf6ff; cursor: pointer; position: relative; z-index: 51; }
  .nav-toggle .bar { display: block; width: 22px; height: 2px; background: currentColor; opacity: .9; border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }
  .nav-toggle .bar + .bar { margin-top: 4px; }
  .nav-toggle:hover .bar { opacity: 1; }
  .nav-toggle.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/******** Hero ********/ 
.hero { flex: 1; display: grid; place-items: center; padding: clamp(48px, 6vw, 96px) 0 56px; min-height: 100vh; }
.hero-inner { display: grid; grid-template-columns: 0.55fr 2.05fr; align-items: center; gap: clamp(24px, 4vw, 56px); }
.hero-copy .display { font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; margin: 0 0 16px; letter-spacing: .2px; text-shadow: 0 8px 40px rgba(0,0,0,.35); }
.lead { color: #f3f4f6; opacity: .9; margin: 0 0 24px; max-width: 48ch; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, #22d3ee, #3b82f6); color: #fff; box-shadow: 0 10px 30px rgba(34, 211, 238, .35); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { color: #d6f3ff; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.hero-art { width: 100%; height: min(88vh, 78vw); max-height: 92vh; filter: drop-shadow(0 40px 80px rgba(0,0,0,.35)); perspective: 900px; position: relative; align-self: start; justify-self: end; margin-top: -2vh; transition: transform .25s ease, filter .25s ease; transform-origin: center right; }
.hero-art svg { width: 100%; height: 100%; display: block; }
/* Gambar hero ketika menggunakan img */
.hero-art .hero-img, .hero-art .hero-logo, .hero-art .hero-logo-inline { width: 100%; height: 100%; max-height: inherit; display: block; border-radius: 20px; object-fit: contain; transform: translateZ(0); will-change: transform, opacity; animation: float 6s ease-in-out infinite; transition: transform .15s ease-out, opacity .35s ease-out; 
  /* Edge fade */
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
}
/* Hover: scale container, pause float animation, add stronger glow */
.hero-art:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 60px 120px rgba(0,0,0,.55)) drop-shadow(0 0 40px rgba(34,211,238,.25)) drop-shadow(0 0 70px rgba(99,179,237,.18));
  z-index: 5;
}
.hero-art:hover .hero-img { animation-play-state: paused; }
/* Target bagian pink/hijau ketika SVG sudah inline di DOM halaman */
.hero-logo-inline svg .pink-part { transform-box: fill-box; transform-origin: center; }
.hero-logo-inline svg .green-part { transform-box: fill-box; transform-origin: center; }
.hero-logo-inline svg.logo-animated .pink-part { animation: pinkAssemble 800ms ease-out forwards; }
.hero-logo-inline svg.logo-animated .green-part { animation: greenAssemble 900ms ease-out 120ms forwards; }
@keyframes pinkAssemble { from { opacity: .0; transform: translate(-40px,20px) scale(0.9) } to { opacity: 1; transform: translate(0,0) scale(1) } }
@keyframes greenAssemble { from { opacity: .0; transform: translate(40px,-20px) scale(0.9) } to { opacity: 1; transform: translate(0,0) scale(1) } }

/* ===== Intro animation (on first load) ===== */
.hero-art.intro-anim .hero-img { opacity: 0; transform: scale(1.08); filter: blur(5px) saturate(1.18); animation: imgIn 1.25s cubic-bezier(.2,0,0,1) forwards; }
.hero-art.intro-anim::before { content: ""; position: absolute; inset: -22% -26%; background: radial-gradient(160px 110px at 0% 50%, rgba(255,105,135,.98), rgba(255,105,135,.65) 42%, rgba(255,105,135,0) 72%); filter: blur(4px); transform: translateX(-130%); animation: sweepPink 1.6s ease-out forwards; pointer-events: none; }
.hero-art.intro-anim::after { content: ""; position: absolute; inset: -22%; background: radial-gradient(38% 38% at 70% 45%, rgba(113,233,171,.85), rgba(99,179,237,.35) 52%, rgba(0,0,0,0) 72%); opacity: 0; animation: glowGreen 1.4s ease-out .6s forwards; pointer-events: none; }

@keyframes imgIn { from { opacity: 0; transform: scale(1.08); filter: blur(4px) saturate(1.15); } to { opacity: 1; transform: scale(1); filter: blur(0) saturate(1); } }
@keyframes sweepPink { 0% { transform: translateX(-120%) } 60% { transform: translateX(10%) } 100% { transform: translateX(120%) } }
@keyframes glowGreen { 0% { opacity: 0 } 60% { opacity: .9 } 100% { opacity: 0 } }

@keyframes float {
  0% { transform: translateY(0) }
  50% { transform: translateY(-8px) }
  100% { transform: translateY(0) }
}

/* Tilt effect baseline to smooth */
.parallax { transition: transform .15s ease-out; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; opacity: .9; }
.footer .container { display: flex; justify-content: center; }

/* ===== Footer Enhanced ===== */
.footer { background: rgba(0,0,0,.12); backdrop-filter: blur(6px); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding: clamp(18px, 3vw, 28px) 0;
}
.footer-col h4 { margin: 0 0 10px; font-size: 18px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list li { display: grid; grid-template-columns: minmax(92px, 34%) 1fr; gap: 12px; border-bottom: 1px dashed rgba(255,255,255,.12); padding: 10px 0; }
.footer-list li:last-child { border-bottom: none; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a { color: #d6f3ff; text-decoration: none; opacity: .9; }
.footer-nav a:hover { opacity: 1; }
.brand-note p { margin: 0; opacity: .9; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 20px; opacity: .85; }

@media (max-width: 920px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* Stack footer contact label/value on very small screens */
@media (max-width: 560px) {
  .footer .footer-list li { grid-template-columns: 1fr; }
  .footer .footer-list strong { margin-bottom: 4px; }
}

/* ===== Features Section ===== */
.features { padding: clamp(40px, 6vw, 80px) 0; min-height: 100vh; display: grid; align-content: start; }
.section-title { font-size: clamp(26px, 3.6vw, 40px); margin: 0 0 6px; letter-spacing: .2px; }
.section-sub { margin: 0 0 28px; opacity: .9; color: #f3f4f6; }
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(12px, 3vw, 20px); margin: 14px 0 22px; }
.about-stats .stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: clamp(14px, 2.6vw, 20px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.05);
}
.about-stats .stat-value { font-size: clamp(22px, 4.2vw, 34px); font-weight: 800; letter-spacing: .3px; display: flex; align-items: baseline; gap: 6px; }
.about-stats .stat-value span { font-size: .5em; font-weight: 600; opacity: .85; text-transform: uppercase; }
.about-stats .stat-label { margin-top: 4px; opacity: .9; }
@media (max-width: 760px){ .about-stats { grid-template-columns: 1fr; } }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 22px);
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.feature {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  display: flex; flex-direction: column; height: 100%;
}
.features .feature + .feature { margin-top: 16px; }
/* In grids, do not offset items vertically */
.feature-grid .feature { margin-top: 0 !important; }
.feature h3 { margin: 10px 0 6px; font-size: 18px; }
.feature h4 { margin: 6px 0 4px; font-size: 16px; font-weight: 700; letter-spacing: .2px; }
.feature p { margin: 0; opacity: .9; }
/* list styling inside feature cards */
.feature ul { margin: 8px 0 12px; padding-left: 18px; display: grid; gap: 6px; }
.feature ul li { opacity: .92; }
.feature .actions { margin-top: auto; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, rgba(34,211,238,.22), rgba(59,130,246,.22)); border: 1px solid rgba(255,255,255,.18); }
.feature-icon { transition: box-shadow .22s ease, transform .22s ease, filter .22s ease; }

/* Layout icon kiri untuk card yang memiliki ikon */
.feature.has-icon { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; align-items: start; }
.feature.has-icon .feature-icon { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.feature.has-icon h3, .feature.has-icon h4 { grid-column: 2; margin: 0 0 6px; }
.feature.has-icon p { grid-column: 2; }
.feature.has-icon ul { grid-column: 2; }

/* Centered variant for a has-icon card */
.feature.has-icon.center-card {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  row-gap: 8px;
}
.feature.has-icon.center-card .feature-icon { grid-column: 1; grid-row: 1; }
.feature.has-icon.center-card h3,
.feature.has-icon.center-card h4,
.feature.has-icon.center-card p { grid-column: 1; }
 
  /* Paragraph spacing within Keunggulan cards */
  #keunggulan .feature p { margin: 0 0 10px; }
  #keunggulan .feature p:last-child { margin-bottom: 0; }
  
  /* Keunggulan badge styling: unify size and spacing */
  #keunggulan .feature .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(191,232,255,.10);
    border: 1px solid rgba(191,232,255,.22);
    color: #d7f3ff;
    font-size: clamp(11px, .9vw, 12px);
    font-weight: 600;
    letter-spacing: .2px;
    margin-bottom: 4px;
    white-space: nowrap;
  }

  /* Slightly smaller description for cleaner wrapping */
  #keunggulan .feature p.sub { font-size: clamp(12px, 1vw, 14px); }

  /* Enlarge icons for centered cards */
  .feature.has-icon.center-card .feature-icon {
  
width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 6px;
}
.feature.has-icon.center-card .feature-icon svg {
  width: 32px;
  height: 32px;
}

/* Hover effects */
.feature:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(191,232,255,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 3px rgba(34,211,238,.08) inset;
  background: linear-gradient(140deg, rgba(34,211,238,.10), rgba(59,130,246,.06));
}
.feature:hover .feature-icon { box-shadow: 0 0 0 2px rgba(191,232,255,.25) inset; }

/* Stronger hover specifically for Layanan */
#layanan .feature { position: relative; transform-origin: center; will-change: transform, box-shadow; }
#layanan .feature:hover {
  transform: translateY(-10px) scale(1.065);
  border-color: rgba(191,232,255,.5);
  box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 0 4px rgba(34,211,238,.10) inset;
  background: linear-gradient(150deg, rgba(34,211,238,.16), rgba(59,130,246,.10));
  z-index: 2;
}
#layanan .feature:hover .feature-icon { box-shadow: 0 0 0 3px rgba(191,232,255,.35) inset; }
/* Elegant text glow on hover for all layanan cards */
#layanan .feature:hover h3,
#layanan .feature:hover h4,
#layanan .feature:hover p {
  text-shadow: 0 6px 22px rgba(0,0,0,.35), 0 0 10px rgba(99,179,237,.20);
}
/* Stronger icon glow and slight scale for centered icon cards */
#layanan .feature.has-icon.center-card:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 0 0 3px rgba(191,232,255,.45) inset, 0 10px 30px rgba(34,211,238,.25);
  filter: drop-shadow(0 8px 22px rgba(34,211,238,.18));
}

@media (max-width: 920px){
  #layanan .feature:hover { transform: translateY(-8px) scale(1.04); }
}

  /* Layout khusus Layanan: icon + h3 sejajar, konten rapi di bawah */
  /* Sederhanakan layout agar cocok dengan 1 card utama + grid 3 contoh */
  #layanan > .container > article.feature:first-of-type,
  #layanan > .container > article.feature.primary-service {
    padding: 12px 16px;
    border-color: rgba(191,232,255,.22);
    background: linear-gradient(150deg, rgba(34,211,238,.10), rgba(59,130,246,.08));
    box-shadow: 0 14px 44px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.05);
    height: auto; /* override default .feature height:100% */
    display: grid; /* centered layout */
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    text-align: center;
    row-gap: 6px;
  }
  #layanan > .container > article.feature:first-of-type .feature-icon,
  #layanan > .container > article.feature.primary-service .feature-icon { grid-column: 1; grid-row: 1; }
  #layanan > .container > article.feature:first-of-type h3,
  #layanan > .container > article.feature.primary-service h3 { grid-column: 1; grid-row: 2; font-weight: 800; font-size: clamp(20px, 2.1vw, 24px); margin: 0 0 4px; display: block; }
  /* Hide right-side line when centered */
  #layanan > .container > article.feature:first-of-type h3::after,
  #layanan > .container > article.feature.primary-service h3::after { display: none; }

  /* Background khusus untuk card utama pertama (Perdagangan Besar) */
  #layanan > .container > article.feature:first-of-type {
    background:
      linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.38)),
      url('../image/perdaganganbesar.jpeg') center/cover no-repeat;
    min-height: 120px;
  }
  /* Tingkatkan keterbacaan judul dan ikon pada card utama pertama */
  #layanan > .container > article.feature:first-of-type h3 {
    color: #eaf6ff;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
  }
  #layanan > .container > article.feature:first-of-type .feature-icon {
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    backdrop-filter: saturate(120%) blur(2px);
  }
  #layanan > .container > article.feature:first-of-type .feature-icon svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  }
  /* Background & visibility for Real Estate main card */
  #layanan > .container > article.feature.real-estate.primary-service {
    background:
      linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.38)),
      url('../image/realestate.jpeg') center/cover no-repeat;
    min-height: 120px;
  }
  #layanan > .container > article.feature.real-estate.primary-service h3 {
    color: #eaf6ff;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
  }
  #layanan > .container > article.feature.real-estate.primary-service .feature-icon {
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    backdrop-filter: saturate(120%) blur(2px);
  }
  #layanan > .container > article.feature.real-estate.primary-service .feature-icon svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  }
  /* Background & visibility for Jasa Bisnis main card */
  #layanan > .container > article.feature.business-service.primary-service {
    background:
      linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.38)),
      url('../image/jasabisnis.jpeg') center/cover no-repeat;
    min-height: 120px;
  }
  #layanan > .container > article.feature.business-service.primary-service h3 {
    color: #eaf6ff;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
  }
  #layanan > .container > article.feature.business-service.primary-service .feature-icon {
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    backdrop-filter: saturate(120%) blur(2px);
  }
  #layanan > .container > article.feature.business-service.primary-service .feature-icon svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  }
  #layanan > .container > article.feature:first-of-type p,
  #layanan > .container > article.feature.primary-service p {
    grid-column: 2;
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.5;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #layanan .feature-grid { margin-top: clamp(12px, 2vw, 18px); }
  #layanan .feature-grid .feature { min-height: 170px; }
  /* Add spacing above the secondary primary-service card (Real Estate) */
  #layanan > .container > article.feature.primary-service { margin-top: clamp(14px, 3vw, 28px); }

  /* Smaller paragraph specifically for the first (Perdagangan Besar) card */
  #layanan > .container > article.feature:first-of-type p { font-size: clamp(13px, 1.2vw, 15px); }

  /* Elegant divider below grids */
  .section-divider {
    height: 1px;
    width: 100%;
    margin: clamp(18px, 4vw, 36px) 0;
    background: linear-gradient(90deg, rgba(191,232,255,.0), rgba(191,232,255,.35), rgba(191,232,255,.0));
    border-radius: 2px;
    position: relative;
  }
  .section-divider::after {
    content: "";
    position: absolute;
    inset: -6px 0;
    background: radial-gradient(40% 60% at 50% 50%, rgba(34,211,238,.10), rgba(59,130,246,.06), rgba(0,0,0,0));
    pointer-events: none;
    filter: blur(8px);
  }
  /* Tweak spacing when divider comes right after a grid */
  #layanan .feature-grid + .section-divider { margin-top: clamp(22px, 4vw, 40px); }
  /* Consistent spacing for service lead paragraphs under main cards */
  #layanan .service-lead { margin: 10px 0 12px; opacity: .95; }

  /* ===== Soft text reveal with gentle glow (elegant) ===== */
  @keyframes softFadeGlow {
    0% {
      opacity: 0;
      transform: translateY(6px);
      text-shadow: 0 0 0 rgba(191,232,255,0), 0 0 0 rgba(34,211,238,0);
    }
    55% {
      opacity: .9;
      transform: translateY(0);
      text-shadow: 0 6px 26px rgba(0,0,0,.35), 0 0 16px rgba(99,179,237,.22);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      text-shadow: 0 4px 18px rgba(0,0,0,.28), 0 0 6px rgba(99,179,237,.14);
    }
  }
  /* Apply to Layanan texts with subtle stagger */
  #layanan article.feature h3,
  #layanan article.feature h4,
  #layanan article.feature p { opacity: 0; animation: softFadeGlow .9s cubic-bezier(.2,0,0,1) forwards; }
  #layanan article.feature h3 { animation-delay: .05s; }
  #layanan article.feature p { animation-delay: .18s; }
  #layanan .feature-grid .feature h4 { animation-delay: .10s; }
  /* Section header reveal */
  #layanan .section-title { opacity: 0; animation: softFadeGlow 1s ease-out .02s forwards; }
  #layanan .section-sub { opacity: 0; animation: softFadeGlow 1s ease-out .12s forwards; }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    #layanan .section-title,
    #layanan .section-sub,
    #layanan article.feature h3,
    #layanan article.feature h4,
    #layanan article.feature p { animation: none; opacity: 1; text-shadow: none; transform: none; }
  }

  /* Real Estate card specific styling */
  #layanan .feature.real-estate h3 { margin: 0 0 8px; font-weight: 800; }
  #layanan .feature.real-estate ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 16px;
  }
  #layanan .feature.real-estate ul li {
    position: relative;
    padding-left: 18px;
    opacity: .95;
  }
  #layanan .feature.real-estate ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px; border-radius: 999px;
    background: linear-gradient(135deg, rgba(34,211,238,.9), rgba(59,130,246,.9));
    box-shadow: 0 0 0 2px rgba(191,232,255,.25);
  }
  @media (max-width: 640px){
    #layanan .feature.real-estate ul { grid-template-columns: 1fr; }
  }

/* ===== Service categories outside the cards ===== */
#layanan .service-categories { 
  margin-top: 18px; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: clamp(14px, 2.4vw, 22px);
}
#layanan .service-categories .category-block { 
  background: rgba(255,255,255,.06); 
  border: 1px solid rgba(255,255,255,.12); 
  border-radius: 16px; 
  padding: 14px; 
  box-shadow: 0 10px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.04);
}
#layanan .service-categories .block-title { 
  font-weight: 800; 
  margin: 2px 0 10px; 
  opacity: .95; 
}
#layanan .service-categories .category-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: clamp(10px, 2vw, 16px);
}

@media (max-width: 1024px){
  #layanan .service-categories { grid-template-columns: 1fr; }
  #layanan .service-categories .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  #layanan .service-categories .category-grid { grid-template-columns: 1fr; }
}

/* About two-column list */
.feature-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 22px);
}
.feature-list.two-col .feature { margin: 0; }
/* Put title beside icon, paragraph below */
.feature-list.two-col .feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 10px;
  padding: 24px 24px;
  min-height: 160px;
}
.feature-list.two-col .feature-icon { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.feature-list.two-col .feature h3 {
  grid-column: 2; grid-row: 1; margin: 0 0 6px; align-self: center;
  font-size: clamp(20px, 2.1vw, 24px);
  font-weight: 800;
  letter-spacing: .2px;
  display: flex; align-items: center; gap: 10px;
}
.feature-list.two-col .feature h3::after {
  content: ""; flex: 1 1 auto; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(191,232,255,.35), rgba(191,232,255,0));
}
.feature-list.two-col .feature p { grid-column: 2; grid-row: 2; margin: 6px 0 0; text-align: justify; }
@media (min-width: 920px){
  .feature-list.two-col .feature { min-height: 200px; }
}
@media (max-width: 760px){
  .feature-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Mobile polish for feature cards and grids */
@media (max-width: 560px) {
  /* tighter spacing */
  .features { padding: 36px 0; }
  .feature-grid { gap: 12px; }
  .feature { padding: 14px 14px 16px; border-radius: 14px; }
  /* icon and layout scale down */
  .feature.has-icon { grid-template-columns: 36px 1fr; column-gap: 10px; }
  .feature-icon { width: 40px; height: 40px; border-radius: 10px; }
  .feature.has-icon.center-card { row-gap: 6px; }
  .feature.has-icon.center-card .feature-icon { width: 48px; height: 48px; border-radius: 12px; }
  .feature.has-icon.center-card .feature-icon svg { width: 28px; height: 28px; }
  .feature h3 { font-size: 17px; }
  .feature h4 { font-size: 15px; }
  .feature-grid .feature { min-height: initial; }
  /* reduce hover motion on mobile */
  #layanan .feature:hover { transform: translateY(-4px) scale(1.02); }
}

/* Desktop menu */
@media (min-width: 920px) {
  .menu { display: flex; }
}

/* Tablet & mobile */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 680px; margin-inline: auto; }
  .nav-inner { padding-top: 14px; position: relative; }
  .nav-toggle { display: inline-flex; }
  /* Mobile menu as dropdown panel under navbar */
  .menu { position: absolute; top: calc(100% + 10px); left: 0; right: 0; margin: 0 auto; width: min(560px, 92vw); display: none; flex-direction: column; gap: 6px; padding: 10px; background: linear-gradient(150deg, rgba(2,6,23,.92), rgba(15,23,42,.92)); border: 1px solid rgba(191,232,255,.18); border-radius: 14px; box-shadow: 0 18px 48px rgba(0,0,0,.45); backdrop-filter: saturate(130%) blur(6px); z-index: 40; }
  .menu.open { display: flex; }
  /* Override earlier .navbar .menu display:flex on mobile */
  .navbar .menu { display: none; }
  .navbar .menu.open { display: flex; }
  .menu a { display: block; padding: 10px 12px; border-radius: 10px; }
  .menu a:hover { background: rgba(191,232,255,.08); }
  .menu .dropdown-menu { position: static; opacity: 1; transform: none; pointer-events: auto; background: rgba(255,255,255,.04); border-radius: 10px; padding: 6px; margin: 2px 0 0 0; }
  .menu .menu-item.has-dropdown::after { display: none; }
  /* Hide CTA to declutter mobile header */
  .nav-inner > .btn.btn-primary { display: none; }
}

/* Small screens */
@media (max-width: 520px) {
  .btn { padding: 10px 14px; }
}
/* ===== Contact Section ===== */
.contact { padding: clamp(40px, 6vw, 84px) 0; text-align: left; }
.contact .container { width: inherit; }
.contact .container-wide {
  width: min(1280px, 94%);
  /* sejajarkan kiri dengan .container (min(1120px, 92%)) */
  margin-left: calc((100% - min(1120px, 92%)) / 2);
  margin-right: auto;
}
.contact .section-title, .contact .section-sub { text-align: left; margin-left: 0; margin-right: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 28px);
}
.contact-card, .contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
}
.contact-card { grid-column: 1 / -1; }
.contact .contact-card {
  /* full-bleed ke kanan */
  margin-right: calc((100vw - min(1120px, 92%)) / -2);
}
.contact-card { width: 100%; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; grid-template-columns: 1fr; align-items: start; }
.contact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.contact-list li:last-child { border-bottom: none; }
.contact-list strong { opacity: .95; font-size: clamp(16px, 1.2vw, 18px); }
.contact-list span { opacity: .95; font-size: clamp(16px, 1.2vw, 18px); }

.contact-form .field { display: grid; gap: 8px; margin-bottom: 12px; }
.contact-form label { font-weight: 600; opacity: .9; }
.contact-form input, .contact-form textarea {
  background: rgba(6, 16, 28, .6);
  color: #e6f6ff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(34, 211, 238, .65); box-shadow: 0 0 0 3px rgba(34, 211, 238, .18); }
.contact-form .field.full { grid-column: 1 / -1; }

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .contact .container-wide { width: min(1120px, 92%); margin-inline: auto; }
}
