/* ── About Stats Band ── */
    #tentang {
      padding-bottom: 0;
    }

    .about-stats-band {
      margin-top: 72px;
      background: var(--light-cream);
      position: relative;
      overflow: hidden;
    }

    /* diagonal accent */
    .about-stats-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        none;
      pointer-events: none;
    }

    .about-stats-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      align-items: center;
      padding: 52px 0;
    }

    .about-stat-divider {
      width: 1px;
      height: 80px;
      background: rgba(3, 38, 90, 0.12);
      margin: 0 auto;
    }

    .about-stat-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 12px 36px;
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity 560ms ease,
        transform 560ms ease;
    }

    .about-stat-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-stat-item:nth-child(1) {
      transition-delay: 0ms;
    }

    .about-stat-item:nth-child(3) {
      transition-delay: 110ms;
    }

    .about-stat-item:nth-child(5) {
      transition-delay: 220ms;
    }

    .about-stat-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      background: rgba(245, 130, 32, 0.12);
      border: 1px solid rgba(245, 130, 32, 0.28);
      border-radius: 14px;
      color: var(--orange);
    }

    .about-stat-icon svg {
      width: 26px;
      height: 26px;
    }

    .about-stat-body {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .about-stat-num {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      white-space: nowrap;
    }

    .about-stat-num .stat-sfx {
      color: var(--orange);
      font-size: 32px;
    }

    .about-stat-label {
      margin-top: 6px;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }

    .about-stat-desc {
      margin-top: 3px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.4;
    }

    /* ══════════════════════════════════════════════
         GALLERY FILTER & ENHANCED GRID
      ══════════════════════════════════════════════ */

    /* ── Filter bar ── */
    .gallery-filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 36px 0 40px;
      padding: 20px 24px;
      background: var(--light-gray);
      border-radius: 12px;
      border: 1px solid var(--line);
    }

    .gallery-filter-label {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-right: 4px;
      flex-shrink: 0;
    }

    .gallery-filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border-radius: 999px;
      border: 1.5px solid var(--line);
      background: var(--white);
      color: var(--navy);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
      white-space: nowrap;
      user-select: none;
    }

    .gallery-filter-btn:hover {
      border-color: var(--orange);
      color: var(--orange-dark);
      background: #fff8f1;
    }

    .gallery-filter-btn.is-active {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      box-shadow: 0 6px 18px rgba(245, 130, 32, 0.3);
    }

    .gallery-filter-btn .filter-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 20px;
      padding: 0 5px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(6, 27, 58, 0.1);
      color: inherit;
      transition: background 180ms ease;
    }

    .gallery-filter-btn.is-active .filter-count {
      background: rgba(255, 255, 255, 0.25);
      color: var(--white);
    }

    /* ── Gallery stats strip ── */
    .gallery-stats {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .gallery-result-count {
      font-size: 14px;
      color: var(--navy);
      font-weight: 500;
    }

    .gallery-result-count strong {
      color: var(--navy);
      font-weight: 700;
    }

    /* ── Enhanced gallery grid ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--light-gray);
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      transition:
        box-shadow 260ms ease,
        transform 260ms ease,
        opacity 320ms ease;
    }

    .gallery-item:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    /* Filter hide/show animation */
    .gallery-item.is-hidden {
      display: none;
    }

    .gallery-item.is-entering {
      animation: galleryFadeIn 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes galleryFadeIn {
      from {
        opacity: 0;
        transform: scale(0.94) translateY(10px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 500ms ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          transparent 40%,
          rgba(6, 27, 58, 0.88) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px 16px 16px;
      opacity: 0;
      transition: opacity 260ms ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h4 {
      margin: 0;
      color: var(--white);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
    }

    .gallery-overlay .gallery-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 8px;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--orange);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      font-family: "Poppins", Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      width: fit-content;
    }

    /* ── Empty state ── */
    .gallery-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 20px;
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: var(--navy);
    }

    .gallery-empty.is-visible {
      display: flex;
    }

    .gallery-empty svg {
      opacity: 0.35;
    }

    .gallery-empty p {
      margin: 0;
      font-size: 14px;
    }

    @media (max-width: 900px) {
      .about-stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 36px 0;
      }

      .about-stat-divider {
        display: none;
      }

      .about-stat-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px 12px;
        gap: 12px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-filter-bar {
        padding: 16px 18px;
      }
    }

    @media (max-width: 640px) {
      .about-stats-grid {
        grid-template-columns: 1fr;
        padding: 8px 0;
      }

      .about-stat-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .about-stat-item:last-child {
        border-bottom: none;
      }

      .about-stat-num {
        font-size: 30px;
      }

      .about-stat-num .stat-sfx {
        font-size: 24px;
      }

      /* ── Fix: wa-float jangan full-width di mobile ──
           style.css menetapkan left:14px;right:14px yang merentang penuh
           dan menutupi konten hero bagian bawah. Override agar tetap
           sebagai tombol pojok kanan yang tidak menghalangi konten. */
      /* .lp-wa-float {
          left: auto;
          right: 16px;
          bottom: 16px;
          border-radius: 50px;
        } */
    }

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

      .gallery-filter-bar {
        padding: 14px 16px;
        gap: 8px;
      }

      .gallery-filter-btn {
        padding: 7px 14px;
        font-size: 12px;
      }

      .gallery-filter-label {
        width: 100%;
      }
    }

    /* ══════════════════════════════════════════
         Section: Negara Asal (Premium Style)
      ══════════════════════════════════════════ */
    .origin-section {
      background: #F9F7F3;
      /* light slate background for contrast against white cards */
      position: relative;
      padding: 92px 0;
    }

    .origin-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 28px;
      margin-top: 56px;
    }

    /* ── Card ── */
    .origin-card {
      background: var(--white);
      border: 1px solid rgba(6, 27, 58, 0.05);
      border-radius: 20px;
      padding: 40px 24px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(6, 27, 58, 0.04);
      transition:
        opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 300ms ease,
        border-color 300ms ease;
      opacity: 0;
      transform: translateY(32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* Card Top Border Accent on Hover */
    .origin-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--orange);
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      opacity: 0;
      transition: opacity 300ms ease;
    }

    .origin-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered Animations */
    .origin-card:nth-child(1) {
      transition-delay: 0ms;
    }

    .origin-card:nth-child(2) {
      transition-delay: 80ms;
    }

    .origin-card:nth-child(3) {
      transition-delay: 160ms;
    }

    .origin-card:nth-child(4) {
      transition-delay: 240ms;
    }

    .origin-card:nth-child(5) {
      transition-delay: 320ms;
    }

    .origin-card:hover {
      box-shadow: 0 20px 45px rgba(6, 27, 58, 0.09);
      transform: translateY(-8px);
      border-color: rgba(245, 130, 32, 0.2);
    }

    .origin-card:hover::before {
      opacity: 1;
    }

    /* ── Flag Circle ── */
    .origin-flag-circle {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 8px 24px rgba(6, 27, 58, 0.12);
      border: 4px solid var(--white);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 400ms ease;
    }

    .origin-flag-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .origin-card:hover .origin-flag-circle {
      transform: scale(1.08) rotate(3deg);
    }

    /* ── Country Info ── */
    .origin-country-title {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 6px;
      line-height: 1.2;
    }

    .origin-country-sub {
      font-family: "Inter", Arial, sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .origin-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .origin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 40px;
      }

      .origin-card {
        padding: 32px 20px;
      }

      .origin-flag-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
      }

      .origin-country-title {
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .origin-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* ── Section: Gudang / Warehouse (Ultra Premium Map Layout) ── */
    .warehouse-map-showcase-area {
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 28px auto 0;
      padding: 0 15px;
    }

    /* Aura / Luminous Glow Effect */
    .warehouse-map-showcase-area::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 85%;
      height: 85%;
      background: radial-gradient(circle at center, rgba(3, 38, 90, 0.08) 0%, rgba(245, 130, 32, 0.04) 50%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 0;
      filter: blur(40px);
      animation: pulse-aura 6s ease-in-out infinite alternate;
    }

    @keyframes pulse-aura {
      0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
      }

      100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
      }
    }

    /* Premium Glassmorphic Frame */
    .warehouse-map-wrapper {
      position: relative;
      z-index: 1;
      width: 100%;
      background: linear-gradient(145deg, #F9F7F3, #F3EBDD);
      border-radius: 28px;
      padding: 12px;
      box-shadow:
        0 24px 54px rgba(3, 38, 90, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(6, 27, 58, 0.06);
      backdrop-filter: blur(10px);
    }

    /* Inner map container */
    .warehouse-map-container {
      position: relative;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(3, 38, 90, 0.02);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 4px 20px rgba(3, 38, 90, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Subtle Decorative Accents (Tech Corners) */
    .warehouse-map-container::before,
    .warehouse-map-container::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 48px;
      border: 2px solid var(--orange);
      z-index: 2;
      opacity: 0.3;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .warehouse-map-container::before {
      top: 24px;
      left: 24px;
      border-right: none;
      border-bottom: none;
      border-top-left-radius: 12px;
    }

    .warehouse-map-container::after {
      bottom: 24px;
      right: 24px;
      border-left: none;
      border-top: none;
      border-bottom-right-radius: 12px;
    }

    /* Hover effects for accents */
    .warehouse-map-wrapper:hover .warehouse-map-container::before {
      top: 16px;
      left: 16px;
      opacity: 0.8;
    }

    .warehouse-map-wrapper:hover .warehouse-map-container::after {
      bottom: 16px;
      right: 16px;
      opacity: 0.8;
    }

    .warehouse-map-bg {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 1;
    }

    .warehouse-map-wrapper:hover .warehouse-map-bg {
      transform: scale(1.02);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .warehouse-map-showcase-area {
        margin-top: 20px;
        padding: 0 10px;
      }

      .warehouse-map-wrapper {
        padding: 12px;
        border-radius: 24px;
      }

      .warehouse-map-container {
        border-radius: 16px;
      }

      .warehouse-map-container::before,
      .warehouse-map-container::after {
        display: none;
        /* Hide accents on mobile for a cleaner look */
      }
    }

    /* ── Section: Liputan Media (Premium Style) ── */
    .media-logo-strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      padding: 36px 32px;
    }

    .media-logos-list {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      width: 100%;
    }

    /* Untuk logo media tidak clickable */
    .media-logo-item {
      pointer-events: none;
      cursor: default;
    }

    /* End logo media */

    /* Premium "Baca Selengkapnya" Button inside Media Logo Strip */
    .btn-media-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--peach);
      border: 1px solid rgba(245, 130, 32, 0.35);
      color: var(--orange-dark);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      transition:
        background 300ms ease,
        border-color 300ms ease,
        transform 250ms ease,
        box-shadow 300ms ease;
    }

    .btn-media-more:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(245, 130, 32, 0.25);
    }

    .btn-media-more i {
      width: 16px;
      height: 16px;
      transition: transform 250ms ease;
      display: inline-block;
    }

    .btn-media-more:hover i {
      transform: translateX(4px);
    }

    @media (max-width: 768px) {
      .media-logo-strip {
        padding: 28px 16px;
        gap: 20px;
      }

      .media-logos-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
      }

      .media-logo-sep {
        display: none !important;
      }

      .media-logo-item {
        padding: 8px;
      }

      .btn-media-more {
        font-size: 13px;
        padding: 8px 20px;
      }
    }

    /* ════════════════════════════════════════
       SECTION FAQ – Premium Vertical Layout
    ════════════════════════════════════════ */
    #faq.section {
      background: linear-gradient(160deg, #F3EBDD 0%, #F9F7F3 100%);
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .faq-header-block {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .faq-header-block .section-label {
      display: inline-block;
      margin-bottom: 12px;
    }

    .faq-header-block h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin: 0 0 16px;
    }

    .faq-header-block p {
      font-size: 16px;
      color: var(--navy);
      line-height: 1.7;
      margin: 0;
    }

    /* Accordion Container */
    .faq-accordion {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Each Item */
    .faq-prem-item {
      border-bottom: 1px solid rgba(6, 27, 58, 0.08);
      transition: background 250ms ease;
    }

    .faq-prem-item:first-child {
      border-top: 1px solid rgba(6, 27, 58, 0.08);
    }

    /* Question Button */
    .faq-prem-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 24px;
      background: transparent;
      border: 0;
      text-align: left;
      cursor: pointer;
      transition: opacity 200ms ease;
    }

    .faq-prem-btn:hover .faq-prem-icon {
      background: var(--orange);
      color: var(--navy);
      box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
    }

    /* Chevron Icon */
    .faq-prem-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(245, 130, 32, 0.1);
      border: 1.5px solid rgba(245, 130, 32, 0.2);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition:
        background 280ms ease,
        color 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease,
        transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .faq-prem-icon svg {
      width: 18px;
      height: 18px;
      color: inherit;
      transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Question Text */
    .faq-prem-text {
      flex: 1;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
      transition: color 200ms ease;
    }

    /* Open State */
    .faq-prem-item.is-open .faq-prem-icon {
      background: var(--orange);
      color: var(--navy);
      border-color: var(--orange);
      box-shadow: 0 6px 18px rgba(245, 130, 32, 0.4);
      transform: rotate(180deg);
    }

    .faq-prem-item.is-open .faq-prem-text {
      color: var(--orange);
    }

    .faq-prem-item.is-open {
      background: rgba(245, 130, 32, 0.02);
    }

    /* Answer – CSS grid trick for smooth reveal */
    .faq-prem-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 380ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-prem-item.is-open .faq-prem-answer {
      grid-template-rows: 1fr;
    }

    .faq-prem-answer-inner {
      overflow: hidden;
      padding: 0 24px;
    }

    .faq-prem-answer-inner p {
      margin: 0 0 22px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--navy);
    }

    /* Inline Accent Bar on left when open */
    .faq-prem-item {
      position: relative;
    }

    .faq-prem-item::before {
      content: "";
      position: absolute;
      left: -1px;
      top: 0;
      width: 3px;
      height: 100%;
      background: var(--orange);
      border-radius: 0 4px 4px 0;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-prem-item.is-open::before {
      transform: scaleY(1);
    }

    /* Bottom CTA */
    .faq-bottom-cta {
      text-align: center;
      margin-top: 52px;
    }

    .faq-bottom-cta a {
      background-color: var(--orange);
      border-color: var(--orange);
      color: var(--white);
    }

    .faq-bottom-cta a:hover {
      background-color: var(--orange-dark);
      border-color: var(--orange-dark);
      color: var(--white);
    }

    .faq-bottom-cta p {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 15px;
      color: var(--navy);
      margin: 0 0 18px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      #faq.section {
        padding-top: 52px;
        padding-bottom: 52px;
      }

      .faq-header-block {
        margin-bottom: 36px;
      }

      .faq-prem-btn {
        padding: 18px 16px;
        gap: 14px;
      }

      .faq-prem-text {
        font-size: 14.5px;
      }

      .faq-prem-answer-inner {
        padding: 0 16px;
      }
    }