/* ============================================================
   JASADESAIN × PIONIR — CSS override & penyesuaian multi-page
   Dipanggil SETELAH style.css pionir.
   ============================================================ */

/* ---------- Mobile menu: child indentasi ---------- */
.mobile-menu ul.mobile-nav-list li.mm-parent > a { font-weight: 700; }
.mobile-menu ul.mobile-nav-list li.mm-child > a {
  padding: 8px 0 8px 18px;
  font-size: 14.5px;
  color: #6b747f;
  font-weight: 500;
}
.mobile-menu ul.mobile-nav-list li.mm-child { border-bottom: none; }
.mobile-menu ul.mobile-nav-list li.mm-child > a:hover { color: var(--thm-color); padding-left: 22px; }

/* ---------- Keunggulan halaman logo: 5 kartu → flex center biar baris terakhir rapi ---------- */
.reason-grid.logo-adv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.reason-grid.logo-adv .reason-card {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 991px) { .reason-grid.logo-adv .reason-card { width: calc((100% - 24px) / 2); } }
@media (max-width: 599px) { .reason-grid.logo-adv .reason-card { width: 100%; } }

/* ---------- Halaman Company Profile ---------- */
.split-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.split-intro .si-text .section-title { margin-bottom: 20px; }
.split-intro .si-p { margin-bottom: 16px; color: var(--text-color); font-size: 16.5px; }
.si-visual .browser-mock { transform: none; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.cp-pricing { grid-template-columns: repeat(3, 1fr); }
.cp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cp-card { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(26,26,26,.08); transition: all .35s; background: #fff; }
.cp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(26,26,26,.15); }
.cp-card img { width: 100%; display: block; aspect-ratio: 10/7; object-fit: cover; object-position: top; }
@media (max-width: 1199px) { .cp-pricing { grid-template-columns: repeat(2, 1fr); } .cp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) { .split-intro { grid-template-columns: 1fr; gap: 40px; } .si-visual { max-width: 560px; } }
@media (max-width: 767px) { .cp-pricing { grid-template-columns: 1fr; } .cp-grid { grid-template-columns: 1fr; } }

/* ---------- Grid galeri logo (halaman Desain Logo) ---------- */
/* pricing: 3 kartu = 3 kolom, 4 kartu = 4 kolom */
.pricing-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.four-col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1199px) {
  .pricing-grid.three-col, .pricing-grid.four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pricing-grid.three-col, .pricing-grid.four-col { grid-template-columns: 1fr; }
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.logo-tile {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  transition: all .3s;
}
.logo-tile:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(26,26,26,.12); border-color: transparent; }
.logo-tile img { max-width: 82%; max-height: 82%; object-fit: contain; }
.section.dark-2 .logo-tile { background: #fff; }
.logo-grid-full .logo-tile { aspect-ratio: auto; height: 150px; padding: 14px; }
@media (max-width: 991px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 599px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } .logo-grid-full .logo-tile { height: 130px; } }

/* ---------- Kartu layanan satuan (halaman Layanan) ---------- */
.layanan-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
/* Halaman desain logo: 4 jenis logo → 4 kolom sejajar */
#jenis .svc-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1199px) { #jenis .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { #jenis .svc-grid { grid-template-columns: 1fr; } }
.layanan-grid .svc-card { display: flex; flex-direction: column; }
.layanan-grid .svc-card h3 { font-size: 19px; }
.layanan-grid .svc-card p { flex: 0 0 auto; margin-bottom: 14px; min-height: 44px; }
.svc-price { font-family: var(--title-font); font-weight: 700; font-size: 15px; color: var(--secondary-color); margin-bottom: 10px; }
.svc-price strong { color: var(--thm-color); font-size: 20px; }
.svc-feats { list-style: none; margin: 0 0 16px; padding: 0; flex: 1; }
.svc-feats li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.8px; padding: 4px 0; color: #4a525c; }
.svc-feats li i { color: var(--thm-color); margin-top: 4px; font-size: 11px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto;
  font-family: var(--title-font); font-weight: 700; font-size: 14px; color: var(--thm-color);
}
.svc-link:hover { gap: 11px; color: var(--secondary-color); }
@media (max-width: 1199px) { .layanan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .layanan-grid { grid-template-columns: 1fr; } }

/* ---------- Dropdown menu multi-page (desktop) ---------- */
.main-menu > ul > li.has-drop { position: relative; }
.main-menu > ul > li.has-drop .drop-caret { font-size: 11px; margin-left: 4px; opacity: .7; }
.main-menu > ul > li.has-drop .drop-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,.14);
  min-width: 240px; padding: 10px; opacity: 0; visibility: hidden;
  transition: all .25s ease; z-index: 999; border-top: 3px solid #EF721F;
}
.main-menu > ul > li.has-drop:hover .drop-panel,
.main-menu > ul > li.has-drop.open .drop-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.main-menu > ul > li.has-drop .drop-panel a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-family: var(--title-font); font-weight: 600; font-size: 14px; color: var(--secondary-color);
}
.main-menu > ul > li.has-drop .drop-panel a:hover { background: rgba(239,114,31,.08); color: #EF721F; padding-left: 18px; }
/* saat header fixed, dropdown tetap putih */
.main-header.fixed .main-menu > ul > li.has-drop .drop-panel a { color: var(--secondary-color); }

/* ---------- Halaman placeholder & inner (page-hero) ---------- */
.hero-section.page-hero { padding: 210px 0 150px; }
.hero-section.page-hero .hero-content h1 { font-size: clamp(32px, 3.8vw, 52px); }
.hero-section.page-hero .hero-content p { max-width: 620px; margin: 0 auto 30px; }
.hero-section.page-hero .hero-btns { justify-content: center; }
/* type-section mengikuti hero page-hero: JANGAN margin negatif (anti mepet) */
.hero-section.page-hero + .type-section {
  margin-top: 0;
  padding-top: 70px;
  padding-bottom: 100px;
}
/* Beri jarak antar section pertama setelah hero pada halaman inner */
.page-hero + section { margin-top: 0; }

/* ============================================================
   OUR CLIENT — 2-rail logo marquee (ala jasadesain.co.id)
   ============================================================ */
.clients-section { overflow: hidden; padding: 100px 0 80px; }
.client-stage { position: relative; margin-top: 44px; padding: 8px 0; display: flex; flex-direction: column; gap: 14px; }
.client-stage::before, .client-stage::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 3; width: clamp(35px, 8vw, 120px); pointer-events: none;
}
.client-stage::before { left: 0; background: linear-gradient(90deg, #fff 8%, rgba(255,255,255,0)); }
.client-stage::after { right: 0; background: linear-gradient(270deg, #fff 8%, rgba(255,255,255,0)); }
.client-rail { display: flex; width: max-content; gap: 15px; animation: clientMove 46s linear infinite; }
.client-rail[data-row="1"] { animation-direction: reverse; animation-duration: 52s; }
.clients-section:hover .client-rail { animation-play-state: paused; }
.jd-client-logo {
  position: relative; flex: 0 0 180px; width: 180px; height: 100px; overflow: hidden;
  border: 1px solid #edf1f5; border-radius: 8px; background: #fff;
  box-shadow: 0 12px 30px rgba(7,24,47,.07);
}
.jd-client-logo img {
  position: absolute; inset: 18px 23px; width: calc(100% - 46px); height: calc(100% - 36px);
  object-fit: contain; filter: grayscale(1); opacity: .72; transition: .25s;
}
.jd-client-logo:hover img { filter: none; opacity: 1; transform: scale(1.04); }
@keyframes clientMove { to { transform: translateX(calc(-50% - 7.5px)); } }
/* versi dark (untuk halaman dengan bg gelap) */
.clients-section.clients-dark .client-stage::before { background: linear-gradient(90deg, #101418 8%, rgba(16,20,24,0)); }
.clients-section.clients-dark .client-stage::after { background: linear-gradient(270deg, #101418 8%, rgba(16,20,24,0)); }
@media (max-width: 560px) {
  .jd-client-logo { flex-basis: 146px; width: 146px; height: 84px; }
  .jd-client-logo img { inset: 15px 19px; width: calc(100% - 38px); height: calc(100% - 30px); }
  .client-rail { gap: 12px; }
}

/* ============================================================
   PRICING FEATURED (kartu oranye) — teks HITAM agar kontras
   ============================================================ */
.price-card.featured { color: #1a1a1a; }
.price-card.featured .pc-tag {
  background: rgba(0,0,0,.14);
  color: #1a1a1a;
}
.price-card.featured .pc-desc { color: #1a1a1a; }
.price-card.featured .pc-price-label { color: #1a1a1a; opacity: .8; }
.price-card.featured .pc-price,
.price-card.featured .pc-price small { color: #1a1a1a; }
.price-card.featured .pc-price s { color: rgba(0,0,0,.55); }
.price-card.featured .pc-yearly { color: #1a1a1a; }
.price-card.featured ul.pc-features li { color: #1a1a1a; }
.price-card.featured ul.pc-features li i { color: #1a1a1a; }
.price-card.featured ul.pc-features li[style*="color:#ccc"] { color: rgba(0,0,0,.4) !important; }
.price-card.featured h3 { color: #1a1a1a; }
.price-card.featured .pc-badge { background: #1a1a1a; color: #fff; }

/* ---------- Grid layanan: 6 kartu (override type-grid 4) ---------- */
.svc-grid { grid-template-columns: repeat(3, 1fr); }
.svc-card .tc-icon { border-radius: 50%; }

/* ---------- Section konsultasi margin (homepage) ---------- */
.consult-section .consult-box { margin: 0 0 110px; }

/* ---------- Fix: portfolio-card image aspect di homepage ---------- */
.portfolio-card .p-shot { aspect-ratio: 16/10; }

/* ---------- Testimoni: batasi tinggi slide (gambar WA portrait) ---------- */
.testi-slider .owl-item { padding-bottom: 6px; }
.testi-slider .testi-item { overflow: hidden; }
.testi-slider .testi-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (min-width: 1100px) {
  /* desktop 6 slide → gambar lebih pendek */
  .testi-slider .testi-item img { height: 300px; }
}
.testi-slider .ti-cap { padding: 8px 12px; font-size: 12px; }
/* tinggi baris carousel konsisten */
.testi-slider .owl-stage { display: flex; }
.testi-slider .owl-item { display: flex; }
.testi-slider .testi-item { display: flex; flex-direction: column; width: 100%; }

/* ---------- Override footer-link hover biar oranye (style.css pakai var) ---------- */
.main-footer .footer-col ul li a:hover { color: #FFAE2F; }

/* ---------- Responsive tambahan ---------- */
@media (max-width: 1199px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .main-menu { display: none; }
  .btn-call { display: none; }
  .mobile-nav-toggler { display: flex; }
  /* Fix spesifisitas footer tablet (kalahkan .main-footer .footer-top) */
  .main-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-section.page-hero { padding: 160px 0 90px; }
  /* Fix footer mobile: spesifisitas cukup utk kalahkan .main-footer .footer-top */
  .main-footer .footer-top { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  .main-footer .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding-bottom: 180px; }
  .main-footer .footer-col { width: 100%; }
  .main-footer .footer-col ul li { margin-bottom: 9px; font-size: 14.5px; }
  .main-footer .footer-col h4 { margin-bottom: 14px; }
  .main-footer .footer-logo { max-width: 100%; }
  .main-footer .footer-contact li { padding-left: 4px; }
  .main-footer .footer-bottom a { display: inline-block; }
  /* anchor scroll tidak tertutup header sticky */
  section[id], footer[id] { scroll-margin-top: 90px; }
  /* floating buttons tetap di pojok bawah normal; konten footer diberi ruang */
  .wa-float { bottom: 24px; width: 52px; height: 52px; font-size: 26px; }
  .scroll-top { bottom: 92px; width: 44px; height: 44px; font-size: 16px; border-radius: 12px; }
}

/* ---------- Halaman Desain Website Perusahaan ---------- */
.web-porto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.web-porto-card { display: block; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(26,26,26,.08); transition: all .35s; }
.web-porto-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(26,26,26,.16); }
.web-porto-top { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: #0f1115; }
.web-porto-top i { width: 8px; height: 8px; border-radius: 50%; display: block; flex-shrink: 0; }
.web-porto-top i:nth-child(1) { background: #ff5f57; }
.web-porto-top i:nth-child(2) { background: #febc2e; }
.web-porto-top i:nth-child(3) { background: #28c840; }
.web-porto-top span { margin-left: 8px; font-size: 11.5px; color: #9aa3ad; letter-spacing: .2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.web-porto-shot { aspect-ratio: 16 / 9; overflow: hidden; background: #f4f5f7; }
.web-porto-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .5s; }
.web-porto-card:hover .web-porto-shot img { transform: scale(1.04); }
.web-porto-body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.web-porto-body h3 { font-size: 16.5px; margin: 0 0 4px; line-height: 1.35; }
.web-porto-body p { font-size: 13px; color: #6b7280; margin: 0; }
.web-porto-arrow { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; display: grid; place-items: center; flex-shrink: 0; font-size: 13px; }
@media (max-width: 1199px) { .web-porto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .web-porto-grid { grid-template-columns: 1fr; } .web-porto-body h3 { font-size: 15.5px; } }

/* ---------- Halaman Portfolio: filter + galeri masonry + lightbox ---------- */
.pf-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 38px; }
.pf-chip {
  border: 1.5px solid rgba(26,26,26,.12); background: #fff; color: #3a3f45;
  font-family: var(--title-font); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all .25s;
  display: inline-flex; align-items: center; gap: 7px;
}
.pf-chip span { font-size: 12px; opacity: .6; font-weight: 500; }
.pf-chip:hover { border-color: #EF721F; color: #EF721F; transform: translateY(-2px); }
.pf-chip.active { background: linear-gradient(84.25deg,#EF721F,#FFAE2F); border-color: transparent; color: #fff; box-shadow: 0 10px 24px rgba(239,114,31,.28); }
.pf-chip.active span { opacity: .85; }

.pf-grid { columns: 4; column-gap: 18px; }
.pf-tile {
  break-inside: avoid; margin: 0 0 18px; position: relative; border-radius: 14px;
  overflow: hidden; background: #f4f5f7; box-shadow: 0 8px 22px rgba(26,26,26,.07);
  transition: all .35s; display: block; cursor: pointer;
}
.pf-tile:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(26,26,26,.16); }
.pf-tile img { width: 100%; height: auto; display: block; }
.pf-tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 14px 12px;
  background: linear-gradient(to top, rgba(10,12,16,.86) 0%, rgba(10,12,16,.55) 46%, rgba(10,12,16,0) 100%);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
  opacity: 0; transform: translateY(8px); transition: all .3s;
}
.pf-tile:hover figcaption { opacity: 1; transform: translateY(0); }
.pf-tag { color: #fff; font-size: 12.5px; font-weight: 700; font-family: var(--title-font); letter-spacing: .2px; }
.pf-zoom { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }
.pf-tile.hide { display: none; }

.pf-more-wrap { text-align: center; margin-top: 34px; }
.pf-count { margin: 16px 0 0; font-size: 14px; color: #7a828b; }
.pf-count b { color: #1a1a1a; }
#pf-more.hidden { display: none; }

.pf-lightbox {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 40px;
}
.pf-lightbox.open { display: flex; }
.pf-lb-backdrop { position: absolute; inset: 0; background: rgba(8,10,14,.94); backdrop-filter: blur(3px); }
.pf-lightbox img {
  position: relative; max-width: min(1200px, 92vw); max-height: 86vh;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); background: #fff;
}
.pf-lb-btn {
  position: absolute; z-index: 2; border: 0; cursor: pointer; color: #fff;
  background: rgba(255,255,255,.12); width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-size: 18px; transition: all .25s;
}
.pf-lb-btn:hover { background: linear-gradient(84.25deg,#EF721F,#FFAE2F); transform: scale(1.06); }
.pf-lb-close { top: 22px; right: 26px; }
.pf-lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.pf-lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.pf-lb-prev:hover, .pf-lb-next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 1199px) { .pf-grid { columns: 3; } }
@media (max-width: 767px) {
  .pf-grid { columns: 2; column-gap: 12px; }
  .pf-tile { margin-bottom: 12px; border-radius: 11px; }
  .pf-filter { gap: 8px; }
  .pf-chip { font-size: 13px; padding: 9px 14px; }
  .pf-lightbox { padding: 16px; }
  .pf-lb-prev { left: 8px; } .pf-lb-next { right: 8px; }
  .pf-lb-close { top: 10px; right: 10px; }
}
/* ---------- Halaman Testimonial ---------- */
.ts-stat-section { background: #0f1115; padding: 44px 0; }
.ts-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ts-stat {
  text-align: center; padding: 18px 12px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
}
.ts-stat b {
  display: block; font-family: var(--title-font); font-size: 34px; line-height: 1.1;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ts-stat span { display: block; margin-top: 6px; font-size: 13.5px; color: #a7aeb7; }

.ts-grid { columns: 4; column-gap: 20px; }
.ts-tile {
  break-inside: avoid; margin: 0 0 20px; position: relative; border-radius: 14px;
  overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgba(26,26,26,.09);
  transition: all .35s; cursor: pointer; display: block;
}
.ts-tile:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(26,26,26,.18); }
.ts-tile img { width: 100%; height: auto; display: block; }
.ts-tile figcaption {
  position: absolute; right: 12px; bottom: 12px; padding: 7px 13px; border-radius: 999px;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; font-size: 12.5px;
  font-weight: 700; font-family: var(--title-font); display: flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(8px); transition: all .3s;
}
.ts-tile:hover figcaption { opacity: 1; transform: translateY(0); }
.ts-tile.hide { display: none; }
.ts-more-wrap { text-align: center; margin-top: 34px; }
#ts-more.hidden { display: none; }

@media (max-width: 1199px) { .ts-grid { columns: 3; } }
@media (max-width: 991px) { .ts-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .ts-grid { columns: 2; column-gap: 12px; }
  .ts-tile { margin-bottom: 12px; }
  .ts-stat b { font-size: 27px; }
}
/* ---------- Cara Pemesanan + Hubungi Kami ---------- */
/* --- Cara pemesanan: 4 langkah --- */
.cp-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cp-step-card {
  position: relative; background: #fff; border-radius: 18px; padding: 32px 24px 28px;
  box-shadow: 0 10px 30px rgba(26,26,26,.07); border: 1px solid rgba(26,26,26,.05);
  transition: all .35s; overflow: hidden;
}
.cp-step-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F); transform: scaleX(0);
  transform-origin: left; transition: transform .4s;
}
.cp-step-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(26,26,26,.14); }
.cp-step-card:hover::before { transform: scaleX(1); }
.cp-step-num {
  position: absolute; top: 18px; right: 22px; font-family: var(--title-font);
  font-size: 44px; font-weight: 700; line-height: 1; color: rgba(239,114,31,.13);
}
.cp-step-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; font-size: 22px;
  margin-bottom: 18px; box-shadow: 0 10px 24px rgba(239,114,31,.28);
}
.cp-step-card h3 { font-size: 19px; margin-bottom: 8px; }
.cp-step-card p { font-size: 14.5px; line-height: 1.65; color: #6b7280; margin: 0; }

/* --- Cara pemesanan: info penting --- */
.cp-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cp-info-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px;
  border-radius: 16px; background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08); transition: all .3s;
}
.cp-info-card:hover { background: rgba(255,255,255,.075); }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; font-size: 19px;
}
.cp-info-card h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.cp-info-card p { color: #a7aeb7; font-size: 14.5px; line-height: 1.65; margin: 0; }

/* --- Hubungi kami: kartu channel --- */
.hk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hk-card {
  display: block; text-align: center; padding: 30px 22px; border-radius: 18px; background: #fff;
  border: 1px solid rgba(26,26,26,.07); box-shadow: 0 10px 28px rgba(26,26,26,.06);
  transition: all .35s; text-decoration: none;
}
.hk-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(26,26,26,.14); border-color: rgba(239,114,31,.35); }
.hk-icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(84.25deg,#EF721F,#FFAE2F); color: #fff; font-size: 23px;
  box-shadow: 0 10px 24px rgba(239,114,31,.26);
}
.hk-card.green .hk-icon { background: linear-gradient(135deg,#25D366,#128C7E); box-shadow: 0 10px 24px rgba(37,211,102,.28); }
.hk-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .6px; color: #8b939c; font-weight: 600; margin-bottom: 8px; }
.hk-card b { display: block; font-family: var(--title-font); font-size: 18px; color: #1a1a1a; margin-bottom: 8px; word-break: break-word; }
.hk-card p { font-size: 13.5px; line-height: 1.6; color: #7a828b; margin: 0; }

/* --- Hubungi kami: formulir --- */
.hk-form-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.hk-form-text .sec-badge { background: rgba(255,255,255,.12); color: #FFAE2F; }
.hk-form-text .section-title { color: #fff; text-align: left; }
.hk-form-text > p { color: #a7aeb7; font-size: 15.5px; line-height: 1.7; }
.hk-form-list { list-style: none; padding: 0; margin: 22px 0 0; }
.hk-form-list li { color: #d3d8de; font-size: 15px; padding: 7px 0; display: flex; align-items: center; gap: 10px; }
.hk-form-list li i { color: #EF721F; }
.hk-form-alt { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hk-form-alt span { color: #8b939c; font-size: 14px; }
.hk-form-alt a { color: #fff; font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: color .25s; }
.hk-form-alt a:hover { color: #FFAE2F; }
.hk-form-alt a i.fa-whatsapp { color: #25D366; }

.hk-form { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; padding: 32px; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hf-field { display: block; margin-bottom: 18px; }
.hf-field > span { display: block; color: #c9cfd6; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; font-family: var(--title-font); }
.hf-field > span b { color: #EF721F; }
.hf-field input, .hf-field select, .hf-field textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.11);
  border-radius: 11px; padding: 13px 15px; color: #fff; font-size: 14.5px; font-family: inherit;
  transition: all .25s; outline: none;
}
.hf-field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a7aeb7'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
.hf-field select option { background: #16191e; color: #fff; }
.hf-field input::placeholder, .hf-field textarea::placeholder { color: #6f7883; }
.hf-field input:focus, .hf-field select:focus, .hf-field textarea:focus { border-color: #EF721F; background: rgba(255,255,255,.09); }
.hf-field textarea { resize: vertical; min-height: 104px; }
.hf-submit { width: 100%; justify-content: center; margin-top: 6px; }
.hf-note { margin: 14px 0 0; font-size: 12.8px; color: #8b939c; text-align: center; }
.hf-note i { color: #EF721F; }
.hf-field.err input, .hf-field.err textarea { border-color: #f0506e; }

@media (max-width: 1199px) {
  .cp-steps-grid, .hk-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hk-form-text .section-title { text-align: center; }
  .hk-form-text { text-align: center; }
  .hk-form-list li { justify-content: center; }
}
@media (max-width: 767px) {
  .cp-steps-grid, .hk-grid, .cp-info-grid { grid-template-columns: 1fr; }
  .hf-row { grid-template-columns: 1fr; gap: 0; }
  .hk-form { padding: 22px 18px; }
  .cp-step-card { padding: 26px 20px 24px; }
}

/* ============ FIX: ikon BRAND Font Awesome ============
   .fa memakai 'Font Awesome 5 Pro' (solid 900) — ikon brand (whatsapp, instagram, dll)
   TIDAK ada di font itu, sehingga glyph-nya kosong. Ikon brand wajib 'Font Awesome 5 Brands'.
   Specificity .fa.fa-xxx (2 kelas) > .fa (1 kelas), jadi override aman tanpa !important. */
.fa.fa-whatsapp, .fa.fa-whatsapp-square,
.fa.fa-instagram, .fa.fa-facebook, .fa.fa-facebook-f, .fa.fa-facebook-square, .fa.fa-facebook-messenger,
.fa.fa-twitter, .fa.fa-twitter-square, .fa.fa-x-twitter,
.fa.fa-linkedin, .fa.fa-linkedin-in, .fa.fa-youtube, .fa.fa-youtube-square,
.fa.fa-telegram, .fa.fa-telegram-plane, .fa.fa-whatsapp,
.fa.fa-tiktok, .fa.fa-pinterest, .fa.fa-pinterest-p,
.fa.fa-google, .fa.fa-google-plus-g, .fa.fa-github, .fa.fa-gitlab,
.fa.fa-behance, .fa.fa-behance-square, .fa.fa-dribbble, .fa.fa-dribbble-square,
.fa.fa-skype, .fa.fa-xing, .fa.fa-vimeo-v, .fa.fa-flickr, .fa.fa-tumblr,
.fa.fa-snapchat-ghost, .fa.fa-line, .fa.fa-discord, .fa.fa-slack,
.fa.fa-medium, .fa.fa-medium-m, .fa.fa-wordpress, .fa.fa-wordpress-simple,
.fa.fa-shopify, .fa.fa-amazon, .fa.fa-paypal, .fa.fa-spotify,
.fa.fa-cc-visa, .fa.fa-cc-mastercard, .fa.fa-cc-paypal,
.fa.fa-android, .fa.fa-apple, .fa.fa-windows, .fa.fa-chrome,
.fa.fa-envira, .fa.fa-etsy, .fa.fa-foursquare, .fa.fa-goodreads, .fa.fa-houzz,
.fa.fa-joomla, .fa.fa-js, .fa.fa-laravel, .fa.fa-php, .fa.fa-python, .fa.fa-react, .fa.fa-vuejs,
.fa.fa-mailchimp, .fa.fa-magento, .fa.fa-odnoklassniki, .fa.fa-quora, .fa.fa-reddit,
.fa.fa-rss, .fa.fa-soundcloud, .fa.fa-stripe, .fa.fa-trello, .fa.fa-viber, .fa.fa-weixin, .fa.fa-weibo {
  font-family: 'Font Awesome 5 Brands' !important;
  font-weight: 400 !important;
}
