/* ============================================================
   LAYANAN INDUSTRI – layanan-industri.css
   Gaya: Korporat Profesional, Bersih, Elegan
   ============================================================ */

/* ── Nav active state ── */
.li-nav-active {
  color: #e21a1a !important;
  font-weight: 600 !important;
}

/* ── Wrapper umum ── */
.li-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section umum ── */
.li-section {
  padding: 80px 0;
}

.li-bg-light {
  background: #f7f8fa;
}

/* ── Section header ── */
.li-section-hdr {
  margin-bottom: 52px;
}

.li-center {
  text-align: center;
}

.li-section-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e21a1a;
  margin-bottom: 10px;
}

.li-section-title {
  font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0d2c4e;
  line-height: 1.28;
  letter-spacing: -0.4px;
  margin-bottom: 0;
}

.li-section-sub {
  margin-top: 14px;
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   HERO
   ============================================================ */
.li-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.li-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.li-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.li-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(8, 20, 45, 0.90) 0%,
      rgba(8, 20, 45, 0.70) 50%,
      rgba(8, 20, 45, 0.20) 100%);
}

.li-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 64px;
}

.li-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.li-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 10px;
}

.li-hero-title {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 600px;
}

.li-hero-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 520px;
}


/* ============================================================
   BREADCRUMB
   ============================================================ */
.li-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.li-bc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #999;
}

.li-bc-inner a {
  color: #555;
  transition: color 0.18s;
}

.li-bc-inner a:hover {
  color: #e21a1a;
}

.li-bc-sep {
  font-size: 9px;
  color: #ccc;
}

.li-bc-inner>span:last-child {
  color: #0d2c4e;
  font-weight: 500;
}


/* ============================================================
   FEATURES / MENGAPA KAMI
   ============================================================ */
.li-intro {
  padding-bottom: 60px;
}

.li-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.li-feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.li-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0d2c4e;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.li-feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.li-feature-card:hover::before {
  transform: scaleX(1);
}

.li-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(13, 44, 78, 0.05);
  color: #0d2c4e;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s, color 0.3s;
}

.li-feature-card:hover .li-feature-icon {
  background: #0d2c4e;
  color: #fff;
}

.li-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0d2c4e;
  margin-bottom: 12px;
}

.li-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ============================================================
   LAYANAN UTAMA ROWS
   ============================================================ */
.li-services-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.li-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.li-row-reverse {
  direction: rtl;
}

.li-row-reverse>* {
  direction: ltr;
}

.li-service-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.li-service-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.li-service-media:hover img {
  transform: scale(1.05);
}

.li-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.li-service-content {
  padding: 20px 0;
}

.li-service-num {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(13, 44, 78, 0.05);
  line-height: 1;
  margin-bottom: -24px;
  margin-left: -4px;
  user-select: none;
}

.li-service-content h3 {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0d2c4e;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.li-service-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.li-service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.li-service-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.li-service-points li i {
  color: #e21a1a;
  font-size: 14px;
  margin-top: 3px;
}


/* ============================================================
   CTA
   ============================================================ */
.li-cta {
  background: #0d2c4e;
  padding: 72px 0;
}

.li-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.li-cta-text h2 {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.li-cta-text p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
}

.li-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.li-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.li-btn-wa:hover {
  background: #1daa61;
}

.li-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}

.li-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.li-btn-wa i,
.li-btn-outline i {
  font-size: 18px;
}


/* ============================================================
   RESPONSIVE – TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .li-hero-title {
    font-size: 40px;
  }

  .li-service-row {
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE – TABLET  ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  .li-hero {
    height: 400px;
  }

  .li-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .li-service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .li-row-reverse {
    direction: ltr;
  }

  .li-service-num {
    margin-bottom: -16px;
  }

  .li-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .li-cta-text p {
    max-width: 100%;
  }

  .li-cta-btns {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE  ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  .li-section {
    padding: 56px 0;
  }

  .li-wrap {
    padding: 0 18px;
  }

  .li-hero {
    height: auto;
    min-height: 320px;
  }

  .li-hero-body {
    padding-bottom: 40px;
  }

  .li-hero-title {
    font-size: 32px;
  }

  .li-hero-tagline {
    font-size: 14px;
  }

  .li-section-title {
    font-size: 24px;
  }

  .li-feature-card {
    padding: 32px 24px;
  }

  .li-service-content h3 {
    font-size: 22px;
  }

  .li-cta {
    padding: 56px 0;
  }

  .li-cta-text h2 {
    font-size: 24px;
  }

  .li-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .li-btn-wa,
  .li-btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE – SMALL  ≤ 400px
   ============================================================ */
@media (max-width: 400px) {
  .li-hero-title {
    font-size: 28px;
  }
}