/* =========================================================================
   SUDUT PROJECT — STYLESHEET
   Satu file CSS untuk semua halaman (beranda, portofolio, detail portofolio).
   Disusun modular: base → layout → komponen umum → komponen per-halaman.

   DAFTAR ISI
   -----------------------------------------------------------------------
   1.  Variabel & Reset Dasar
   2.  Utilitas Blueprint (grid texture, corner frame, dimension divider)
   3.  Tombol (Button)
   4.  Navbar
   5.  Section Title & Teks Umum
   6.  Kartu Portofolio (reusable — dipakai di beranda & listing)
   7.  Footer
   -----------------------------------------------------------------------
   8.  [Beranda] Hero
   9.  [Beranda] Layanan (Service Cards)
   10. [Beranda] Keunggulan (Spec Rows)
   11. [Beranda] Kutipan CEO
   12. [Beranda] Kontak
   13. [Beranda] CTA Penutup
   -----------------------------------------------------------------------
   14. [Portofolio] Page Header
   15. [Portofolio] Filter Bar
   16. [Portofolio] Grid & State "Coming Soon"
   -----------------------------------------------------------------------
   17. [Detail Portofolio] Header (latar gelap bergaris)
   18. [Detail Portofolio] Layout Utama (Media & Konten) — mengikuti Style_1
   19. [Detail Portofolio] Hero Frame (corner brackets)
   20. [Detail Portofolio] Galeri
   21. [Detail Portofolio] Related & Navigasi Proyek
   ========================================================================= */


/* =========================================================================
   1. VARIABEL & RESET DASAR
   ========================================================================= */
:root{
  --gold:#FFC100;
  --gold-tint:#FFF6D9;
  --charcoal:#373945;
  --navy:#070A13;
  --white:#FFFFFF;
  --steel:#8A8D99;
  --line:rgba(55,57,69,0.14);
  --font-display:'Poppins',sans-serif;
  --font-mono:'IBM Plex Mono',monospace;
  --nav-h:64px;
}
*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  width:100%;
}
body{
  font-family:var(--font-display);
  color:var(--charcoal);
  background:var(--white);
  overflow-x:hidden;
  width:100%;
  position:relative;
}
.mono{font-family:var(--font-mono);}
.eyebrow{
  font-family:var(--font-mono);
  font-size:0.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
}
.eyebrow.dark{color:var(--charcoal);opacity:.65;}


/* =========================================================================
   2. UTILITAS BLUEPRINT
   Elemen ciri khas visual Sudut Project — dipakai berulang di banyak
   section, jadi ditulis sebagai utility class yang bisa ditempel ke
   elemen apa saja.
   ========================================================================= */

/* Tekstur grid ala blueprint */
.grid-bg{
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:36px 36px;
}
.grid-bg-light{
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:32px 32px;
}

/* Bingkai sudut siku ("corner bracket") */
.bp-frame{position:relative;}
.bp-frame::before, .bp-frame::after,
.bp-frame .bp-c2::before, .bp-frame .bp-c2::after{
  content:"";
  position:absolute;
  width:18px; height:18px;
  border:2px solid var(--gold);
  opacity:.9;
}
.bp-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.bp-frame::after{ top:-1px; right:-1px; border-left:none; border-bottom:none; }
.bp-frame .bp-c2::before{ bottom:-1px; left:-1px; border-right:none; border-top:none; }
.bp-frame .bp-c2::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }
.bp-frame.dark::before, .bp-frame.dark::after,
.bp-frame.dark .bp-c2::before, .bp-frame.dark .bp-c2::after{ border-color:var(--charcoal); }

/* Divider bergaya garis dimensi (seperti gambar teknik) */
.dim-divider{
  display:flex; align-items:center; gap:14px;
  margin:0 auto;
  max-width:1100px;
}
.dim-divider .dim-line{
  flex:1; height:1px; background:var(--line); position:relative;
}
.dim-divider .dim-line::before, .dim-divider .dim-line::after{
  content:""; position:absolute; top:-4px; width:1px; height:9px; background:var(--line);
}
.dim-divider .dim-line::before{ left:0; }
.dim-divider .dim-line::after{ right:0; }
.dim-divider .dim-label{
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.14em;
  color:var(--steel);
  white-space:nowrap;
  padding:5px 14px;
  border:1px solid var(--line);
  border-radius:2px;
}


/* =========================================================================
   3. TOMBOL (BUTTON)
   ========================================================================= */
.btn-gold{
  background:var(--gold); color:var(--navy); font-weight:600; border:none;
  padding:10px 22px; border-radius:2px; font-size:.9rem;
  text-decoration:none; display:inline-block;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(255,193,0,0.28); color:var(--navy); }

.btn-outline-line{
  background:transparent; color:var(--white); font-weight:500; border:1px solid rgba(255,255,255,0.35);
  padding:10px 22px; border-radius:2px; font-size:.9rem;
}
.btn-outline-line:hover{ border-color:var(--gold); color:var(--gold); }

/* Varian outline untuk dipakai di atas latar terang (mis. halaman detail) */
.btn-line{
  border:1px solid var(--line); color:var(--charcoal); padding:10px 20px; border-radius:2px;
  font-size:.88rem; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
}
.btn-line:hover{ border-color:var(--charcoal); color:var(--charcoal); }


/* =========================================================================
   4. NAVBAR (Floating Box Style)
   ========================================================================= */
.header{
  padding:20px 0;
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.header .header-container{
  background:rgba(7,10,19,0.92);
  border-radius:8px;
  padding:10px 25px;
  box-shadow:0px 4px 20px rgba(0,0,0,0.25);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);
  transition:all .3s ease;
}
.header.header-scrolled{ padding:10px 0; }
.header.header-scrolled .header-container{
  background:rgba(7,10,19,0.98);
  box-shadow:0px 8px 25px rgba(0,0,0,0.4);
}
.navbar-brand{
  font-weight:800; color:var(--white); font-size:1.15rem; letter-spacing:.02em;
}
.navbar-brand .diamond{
  display:inline-block; width:11px; height:11px; background:var(--gold);
  transform:rotate(45deg); margin-right:9px; vertical-align:middle;
}
.navbar-logo{ height:38px; width:auto; display:block; }
@media (max-width:991.98px){
  .navbar-logo{ height:32px; }
}
.nav-link{
  color:rgba(255,255,255,0.75) !important;
  font-size:.92rem; font-weight:500;
  position:relative;
  padding:8px 12px !important;
  transition:color .3s ease;
}
.nav-link:hover{ color:var(--white) !important; }
.nav-link.active{ color:var(--gold) !important; }
@media (min-width:992px){
  .nav-link::after{
    content:""; position:absolute; bottom:0; left:12px; right:12px; height:2px;
    background-color:var(--gold); transform:scaleX(0); transition:transform .3s ease;
  }
  /* Garis bawah sama untuk hover & active — hanya warna teks yang beda */
  .nav-link:hover::after, .nav-link.active::after{ transform:scaleX(1); }
}

/* Navbar mobile */
@media (max-width:991.98px){
  .header{ padding:10px 0; }
  .header .header-container{ padding:8px 15px; position:relative; }
  .navbar{ position:static; }
  .navbar-collapse{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    background:var(--navy);
    padding:15px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 16px 32px rgba(0,0,0,0.35);
    max-height:calc(100vh - 110px);
    overflow-y:auto;
  }
  .navbar-nav{ width:100%; align-items:flex-start !important; }
  .navbar-nav .nav-item{ width:100%; }
  .navbar-nav .nav-link{ padding:10px 6px !important; width:100%; }
}


/* =========================================================================
   5. SECTION TITLE & TEKS UMUM
   ========================================================================= */
.section{ padding:96px 0; }
.section-title{ margin-bottom:44px; }
.section-title .eyebrow{ display:inline-block; margin-bottom:12px; }
.section-title h2{
  font-size:clamp(1.7rem, 3vw, 2.35rem); font-weight:700; letter-spacing:-.01em; line-height:1.25; margin:0;
}
.section-title h2::after{
  content:""; display:block; width:64px; height:3px; background:var(--gold); margin-top:18px;
}
.section-title p{
  font-size:1rem; color:var(--steel); max-width:560px; margin:16px 0 0; line-height:1.75;
}
.section-title.text-center{ margin-left:auto; margin-right:auto; }
.section-title.text-center h2::after{ margin-left:auto; margin-right:auto; }
.section-title.text-center p{ margin-left:auto; margin-right:auto; }
.box-title{ font-weight:700; font-size:1.25rem; margin:0 0 26px; }
.about-copy{ font-size:1.02rem; color:var(--charcoal); opacity:.85; line-height:1.85; }


/* =========================================================================
   5B. [BERANDA] SEJARAH PERUSAHAAN — SPLIT KOLOM + TIMELINE
   ========================================================================= */
/* Subheadline kolom kiri: dinaikkan dari abu-abu caption ke charcoal, sedikit lebih besar */
.history-subhead{
  font-size:1.08rem; color:var(--charcoal); opacity:.78; max-width:520px; margin:16px 0 0; line-height:1.7;
}

/* Mini stat card pengisi whitespace kolom kiri */
.history-mini-stat{
  display:flex; align-items:center; gap:18px;
  margin-top:40px; padding:22px 20px;
  border:1px solid var(--line); border-radius:2px;
  position:relative;
}
.history-mini-stat::before, .history-mini-stat::after{
  content:""; position:absolute; width:14px; height:14px; border:2px solid var(--gold);
}
.history-mini-stat::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.history-mini-stat::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }
.history-mini-stat-num{
  font-family:var(--font-mono); font-size:2.4rem; font-weight:700; color:var(--gold); line-height:1; flex-shrink:0;
}
.history-mini-stat-txt{ display:flex; flex-direction:column; gap:4px; }
.history-mini-stat-label{ font-weight:700; font-size:.94rem; color:var(--charcoal); }
.history-mini-stat-desc{ font-size:.82rem; color:var(--steel); line-height:1.5; }

/* Vertical timeline kolom kanan, menggantikan paragraf naratif panjang */
.history-timeline{ position:relative; padding-left:34px; }
.history-timeline::before{
  content:""; position:absolute; left:5px; top:6px; bottom:6px; width:1px; background:var(--line);
}
.history-tl-item{ position:relative; padding-bottom:34px; }
.history-tl-item.is-last{ padding-bottom:0; }
.history-tl-dot{
  position:absolute; left:-34px; top:2px; width:11px; height:11px; border-radius:50%;
  background:var(--white); border:2px solid var(--charcoal);
}
.history-tl-dot.is-gold{ border-color:var(--gold); background:var(--gold); }
.history-tl-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.08em;
  color:var(--gold-tint); background:var(--charcoal);
  padding:5px 9px; border-radius:2px; margin-bottom:10px;
}
.history-tl-tag.is-gold{ background:var(--gold); color:var(--navy); }
.history-tl-tag em{ font-style:normal; font-size:.62rem; background:rgba(255,255,255,0.25); padding:2px 6px; border-radius:2px; }
.history-tl-tag.is-gold em{ background:rgba(7,10,19,0.15); }
.history-tl-text{ font-size:.98rem; color:var(--charcoal); opacity:.85; line-height:1.75; margin:0; max-width:500px; }

/* Kalimat penutup jadi callout tegas, bukan paragraf biasa */
.history-closing{
  margin-top:30px; padding-top:26px; border-top:1px solid var(--line);
  font-weight:600; opacity:1;
}

@media (min-width:992px){
  .history-col-left{ flex:0 0 40%; max-width:40%; }
  .history-col-right{ flex:0 0 60%; max-width:60%; }
}
@media (max-width:767px){
  .history-timeline{ padding-left:28px; }
  .history-tl-dot{ left:-28px; }
  .history-mini-stat{ flex-direction:column; align-items:flex-start; gap:10px; }
}

@media (max-width:767px){
  .section{ padding:64px 0; }
}


/* =========================================================================
   6. KARTU PORTOFOLIO (reusable — hover overlay card)
   Dipakai di beranda (preview) maupun halaman listing portofolio.
   ========================================================================= */
.port-card{ position:relative; text-decoration:none; color:inherit; display:block; }
.port-img{
  aspect-ratio:4/3; width:100%; position:relative; overflow:hidden; border-radius:10px;
  background:linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
  box-shadow:0 4px 24px rgba(7,10,19,0.08);
}
.port-img::after{
  content:""; position:absolute; inset:0; z-index:1;
  background-image:linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size:22px 22px;
}
.port-overlay{
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(180deg, transparent 0%, rgba(7,10,19,0.88) 100%);
  display:flex; align-items:flex-end; padding:22px;
  opacity:0; transform:translateY(16px);
  transition:all .4s cubic-bezier(.4,0,.2,1);
}
.port-overlay-content{ width:100%; }
.port-cat{
  font-family:var(--font-mono); font-size:.68rem; color:var(--gold); text-transform:uppercase;
  letter-spacing:.1em; font-weight:600; margin-bottom:8px;
}
.port-overlay-content .port-name{ color:var(--white); font-weight:700; font-size:1.05rem; margin:0 0 14px; }
.port-links{ display:flex; gap:10px; }
.port-link-icon{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center; color:var(--white); font-size:.9rem;
  opacity:0; transform:translateY(10px); transition:all .3s ease;
}
.port-link-icon:nth-child(2){ transition-delay:.05s; }
.port-card:hover .port-overlay{ opacity:1; transform:translateY(0); }
.port-card:hover .port-link-icon{ opacity:1; transform:translateY(0); }
.port-meta{ margin-top:14px; }
.port-meta .port-name{ font-weight:700; font-size:1.02rem; }
.port-loc{ font-size:.8rem; color:var(--steel); font-family:var(--font-mono); }

/* Varian "coming soon" (non-clickable), dipakai di listing portofolio */
.port-card.disabled{ cursor:default; }
.port-card.disabled .port-img{ background:repeating-linear-gradient(135deg, var(--gold-tint), var(--gold-tint) 10px, #fff 10px, #fff 20px); box-shadow:none; }
.port-card.disabled .port-img::after{ opacity:.5; }
.port-card.disabled .soon-badge{
  position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:0 20px;
}
.port-card.disabled .soon-badge i{font-size:1.6rem; color:var(--charcoal); margin-bottom:10px;}
.port-card.disabled .soon-badge .soon-label{font-family:var(--font-mono); font-size:.72rem; letter-spacing:.1em; color:var(--charcoal); font-weight:600;}
.port-card.disabled .soon-badge .soon-sub{font-size:.78rem; color:var(--steel); margin-top:4px;}
.port-card.disabled ~ .port-meta .port-name{color:var(--steel);}


/* =========================================================================
   7. FOOTER
   ========================================================================= */
footer{ background:var(--navy); color:rgba(255,255,255,0.65); padding:60px 0 24px; }
footer .foot-brand{ color:var(--white); font-weight:800; font-size:1.1rem; }
footer .foot-brand .diamond{
  display:inline-block; width:10px; height:10px; background:var(--gold); transform:rotate(45deg); margin-right:8px;
}
footer .foot-logo{ height:34px; width:auto; display:block; }
footer a{ color:rgba(255,255,255,0.65); text-decoration:none; }
footer a:hover{ color:var(--gold); }
footer .foot-h{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.12em; color:var(--gold); text-transform:uppercase; margin-bottom:16px; }
footer .foot-line{ border-color:rgba(255,255,255,0.1); margin:40px 0 20px; }
.social-ic{
  width:36px; height:36px; border:1px solid rgba(255,255,255,0.18); border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center; margin-right:8px;
}
.social-ic:hover{ border-color:var(--gold); }


/* =========================================================================
   8. [BERANDA] HERO
   ========================================================================= */
.hero{
  background-color:var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(100deg, var(--navy) 0%, var(--navy) 55%, rgba(7,10,19,0.72) 80%, rgba(7,10,19,0.25) 100%),
    url('../img/hero-bg.jpg');
  background-size:36px 36px, 36px 36px, cover, cover;
  background-position:0 0, 0 0, center, center;
  background-repeat:repeat, repeat, no-repeat, no-repeat;
  color:var(--white);
  padding:170px 0 110px;
  position:relative;
}
.hero .headline{
  font-size:clamp(2.3rem, 5vw, 4.1rem);
  font-weight:700; line-height:1.08; letter-spacing:-.01em;
  min-height:2.16em;
}
.hero .headline .accent{ color:var(--gold); font-style:italic; font-weight:600; }
.hero .headline .typed-cursor{ color:var(--gold); font-weight:400; }
.hero .sub{
  font-size:1.08rem; color:rgba(255,255,255,0.68); max-width:560px; margin-top:22px; line-height:1.7;
}
.hero-social{
  display:flex; gap:0; margin-top:56px; border-top:1px solid rgba(255,255,255,0.14); padding-top:22px;
}
.hero-social-item{
  display:flex; align-items:center; gap:12px;
  padding-right:32px; margin-right:32px; border-right:1px solid rgba(255,255,255,0.14);
  text-decoration:none; color:inherit;
}
.hero-social-item:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-social-icon{
  width:42px; height:42px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.28); border-radius:50%;
  font-size:1.15rem; color:var(--gold);
  transition:background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.hero-social-item:hover .hero-social-icon{
  background:var(--gold); border-color:var(--gold); color:var(--charcoal); transform:translateY(-2px);
}
.hero-social-item .lbl{ font-size:.76rem; color:rgba(255,255,255,0.55); }
.hero-social-item:hover .lbl{ color:var(--white); }

@media (max-width:991.98px){
  .hero{
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(180deg, rgba(7,10,19,0.88) 0%, rgba(7,10,19,0.8) 100%),
      url('../img/hero-bg.jpg');
  }
}
@media (max-width:767px){
  .hero{ padding:130px 0 70px; }
  .hero-social{ flex-wrap:wrap; gap:18px 20px; }
  .hero-social-item{ border-right:none !important; margin-right:0; padding-right:0; }
}


/* =========================================================================
   9. [BERANDA] LAYANAN (Service Cards)
   ========================================================================= */
.svc-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  padding:34px 26px 28px;
  height:100%;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  box-shadow:0 5px 25px -5px rgba(7,10,19,0.06);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card .svc-accent{
  position:absolute; top:0; left:0; width:3px; height:0;
  background:var(--gold); transition:height .3s ease-in-out;
}
.svc-card:hover{
  border-color:var(--gold);
  transform:translateY(-5px);
  box-shadow:0 8px 30px -5px rgba(7,10,19,0.12);
}
.svc-card:hover .svc-accent{ height:100%; }

/* Garis sudut (corner bracket) ala blueprint, muncul saat hover */
.svc-card:not(.bp-frame)::before, .svc-card:not(.bp-frame)::after,
.svc-card .svc-c2::before, .svc-card .svc-c2::after{
  content:"";
  position:absolute;
  width:16px; height:16px;
  border:2px solid var(--gold);
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
}
.svc-card:not(.bp-frame)::before{ top:10px; left:10px; border-right:none; border-bottom:none; }
.svc-card:not(.bp-frame)::after{ top:10px; right:10px; border-left:none; border-bottom:none; }
.svc-card .svc-c2::before{ bottom:10px; left:10px; border-right:none; border-top:none; }
.svc-card .svc-c2::after{ bottom:10px; right:10px; border-left:none; border-top:none; }
.svc-card:hover:not(.bp-frame)::before, .svc-card:hover:not(.bp-frame)::after,
.svc-card:hover .svc-c2::before, .svc-card:hover .svc-c2::after{ opacity:1; }

.svc-card.bp-frame{ border-radius:2px; overflow:visible; }
.svc-card .svc-code{ font-family:var(--font-mono); font-size:.7rem; color:var(--steel); letter-spacing:.12em; }
.svc-card .svc-icon{
  width:52px; height:52px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--charcoal); margin:16px 0 20px; border-radius:2px;
  transition:transform .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out;
}
.svc-card:hover .svc-icon{
  transform:scale(1.1) rotate(5deg);
  color:var(--gold); border-color:var(--gold);
}
.svc-card .svc-name{ font-weight:700; font-size:1.15rem; margin-bottom:8px; }
.svc-card .svc-desc{ font-size:.88rem; color:var(--steel); line-height:1.6; flex-grow:1; }
.badge-new{
  position:absolute; top:16px; right:16px;
  background:var(--gold); color:var(--navy); font-family:var(--font-mono);
  font-size:.62rem; letter-spacing:.08em; padding:4px 8px; border-radius:2px; font-weight:600;
}
.svc-card .svc-link{ font-size:.82rem; font-weight:600; color:var(--charcoal); margin-top:18px; display:inline-flex; align-items:center; gap:6px; }

.svc-card .svc-link i{ transition:transform .15s ease; }
.svc-card:hover .svc-link i{ transform:translateX(4px); }


/* =========================================================================
   10. [BERANDA] KEUNGGULAN (Spec Rows)
   ========================================================================= */
.spec-row{
  display:flex; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); align-items:flex-start;
}
.spec-row:first-child{ border-top:1px solid var(--line); }
.spec-row .spec-tag{
  font-family:var(--font-mono); font-size:.72rem; color:var(--gold-tint); background:var(--charcoal);
  padding:5px 9px; border-radius:2px; white-space:nowrap; height:fit-content; letter-spacing:.06em;
}
.spec-row .spec-title{ font-weight:700; font-size:1.02rem; margin-bottom:4px; }
.spec-row .spec-desc{ font-size:.9rem; color:var(--steel); line-height:1.6; }


/* =========================================================================
   11B. [BERANDA] TESTIMONI KLIEN (carousel geser)
   ========================================================================= */
.testi-scroll-wrap{ position:relative; }
.testi-scroll{
  display:flex; gap:24px; overflow-x:auto;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  padding:4px 4px 14px; margin:0 -4px; cursor:grab; user-select:none;
  scrollbar-width:none; -ms-overflow-style:none;
}
.testi-scroll::-webkit-scrollbar{ display:none; }
.testi-scroll.is-dragging{ cursor:grabbing; scroll-snap-type:none; }
.testi-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:2px;
  padding:30px 24px 26px;
  position:relative;
  display:flex;
  flex-direction:column;
  flex:0 0 auto;
  width:340px;
  scroll-snap-align:start;
}
.testi-card .bp-c2::before, .testi-card .bp-c2::after,
.testi-card::before, .testi-card::after{ width:14px; height:14px; }
.testi-badge{
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em;
  color:var(--gold-tint); background:var(--charcoal);
  padding:5px 9px; border-radius:2px; width:fit-content; margin-bottom:18px;
}
.testi-quote-mark{ font-family:var(--font-mono); font-size:2rem; color:var(--gold); line-height:1; position:absolute; top:22px; right:22px; }
.testi-text{ font-size:.94rem; color:var(--charcoal); opacity:.85; line-height:1.75; flex-grow:1; margin:0 0 22px; }
.testi-person{ display:flex; align-items:center; gap:12px; padding-top:18px; border-top:1px solid var(--line); }
.testi-avatar{
  width:40px; height:40px; flex-shrink:0; border-radius:2px;
  background:var(--charcoal); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:.8rem;
}
.testi-name{ font-weight:700; font-size:.92rem; line-height:1.3; }
.testi-role{ font-family:var(--font-mono); font-size:.72rem; color:var(--steel); line-height:1.4; }

.testi-nav{ display:flex; gap:10px; justify-content:center; margin-top:24px; }
.testi-nav-btn{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line);
  background:var(--white); color:var(--charcoal); display:flex; align-items:center; justify-content:center;
  font-size:1rem; transition:border-color .2s ease, color .2s ease, background-color .2s ease;
}
.testi-nav-btn:hover{ border-color:var(--gold); background:var(--gold); color:var(--navy); }
.testi-nav-btn:disabled{ opacity:.35; pointer-events:none; }

@media (max-width:767px){
  .testi-quote-mark{ top:18px; right:18px; font-size:1.7rem; }
  .testi-card{ width:82vw; max-width:340px; }
}


/* =========================================================================
   12. [BERANDA] KONTAK
   ========================================================================= */
.contact-icon{
  width:44px; height:44px; border-radius:2px;
  background:var(--gold-tint); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.contact-box{ border:1px solid var(--line); padding:34px 30px; }
.map-box{ border:1px solid var(--line); padding:6px; }


/* =========================================================================
   13. [BERANDA] CTA PENUTUP
   ========================================================================= */
.cta-band{
  background:var(--charcoal); color:var(--white); padding:70px 0; position:relative; overflow:hidden;
}
.cta-band .cta-title{ font-size:clamp(1.6rem,3vw,2.3rem); font-weight:700; }
.cta-band .cta-sub{ color:rgba(255,255,255,0.6); font-size:.98rem; margin-top:8px; }


/* =========================================================================
   14. [PORTOFOLIO] PAGE HEADER
   Catatan: class .breadcrumb-mono dipakai ulang di halaman detail (§17)
   dengan tampilan berbeda (latar terang), jadi masing-masing di-scope ke
   parent header-nya supaya tidak saling tabrak.
   ========================================================================= */
.page-header{
  background:var(--navy); color:var(--white); padding:150px 0 64px; position:relative;
  background-image:linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:36px 36px;
}
.page-header h1{ font-size:clamp(2rem,4vw,3rem); font-weight:700; letter-spacing:-.01em; margin-top:10px; }
.page-header p{ color:rgba(255,255,255,0.65); max-width:560px; margin-top:14px; line-height:1.7; }
.page-header .breadcrumb-mono{ font-family:var(--font-mono); font-size:.74rem; color:rgba(255,255,255,0.45); letter-spacing:.06em; }
.page-header .breadcrumb-mono a{ color:rgba(255,255,255,0.45); text-decoration:none; }
.page-header .breadcrumb-mono a:hover{ color:var(--gold); }

@media (max-width:767px){
  .page-header{ padding:120px 0 48px; }
}


/* =========================================================================
   15. [PORTOFOLIO] FILTER BAR
   ========================================================================= */
.filter-bar{ position:sticky; top:var(--nav-h); z-index:40; background:var(--white); border-bottom:1px solid var(--line); padding:18px 0; }
.filter-chip{
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.04em;
  border:1px solid var(--line); background:var(--white); color:var(--charcoal);
  padding:8px 16px; border-radius:20px; margin-right:10px; margin-bottom:8px;
  display:inline-flex; align-items:center; gap:6px; cursor:pointer; transition:.15s ease; user-select:none;
}
.filter-chip .count{ color:var(--steel); }
.filter-chip:hover{ border-color:var(--charcoal); }
.filter-chip.active{ background:var(--charcoal); color:var(--white); border-color:var(--charcoal); }
.filter-chip.active .count{ color:var(--gold); }

@media (max-width:991.98px){
  .filter-bar .container{ display:flex; flex-wrap:wrap; }
}


/* =========================================================================
   16. [PORTOFOLIO] GRID
   Kartu kotak (.port-card) ada di §6, reusable.
   ========================================================================= */
.port-grid{ padding:64px 0 96px; }

@media (max-width:767px){
  .port-grid{ padding:40px 0 64px; }
}


/* =========================================================================
   17. [DETAIL PORTOFOLIO] HEADER (latar gelap bergaris)
   Memakai ulang .page-header (navy + grid texture) supaya "background
   hitam bergaris" tetap konsisten dengan halaman listing portofolio.
   detail-title dipakai saat butuh ukuran judul khusus di dalam .page-header.
   ========================================================================= */
.page-header.page-header--detail{ padding:130px 0 40px; }
.page-header .detail-title{ font-size:clamp(1.9rem,4vw,2.9rem); font-weight:700; letter-spacing:-.01em; margin-top:10px; }

@media (max-width:767px){
  .page-header.page-header--detail{ padding:110px 0 28px; }
}


/* =========================================================================
   18. [DETAIL PORTOFOLIO] LAYOUT UTAMA (Media & Konten)
   Struktur dua kolom mengikuti layout contoh (Style_1 portfolio-details):
   kiri = galeri foto (hero + thumbnail + tag material), kanan = meta,
   judul, ringkasan (accordion), lingkup pekerjaan, tombol aksi.
   ========================================================================= */
.portfolio-details{ padding:64px 0; }

/* -- Kolom kiri: media -- */
.portfolio-details-media{ position:relative; }
.portfolio-details-media .main-image{ margin-bottom:14px; }

/* Swiper: slider foto utama */
.portfolio-details-slider .swiper-slide{ height:auto; }
.portfolio-details-slider .swiper-button-prev,
.portfolio-details-slider .swiper-button-next{
  width:38px; height:38px; margin-top:-19px; border-radius:50%;
  background:rgba(7,10,19,0.55); backdrop-filter:blur(2px); transition:.2s ease;
}
.portfolio-details-slider .swiper-button-prev:after,
.portfolio-details-slider .swiper-button-next:after{ font-size:14px; color:var(--white); font-weight:700; }
.portfolio-details-slider .swiper-button-prev:hover,
.portfolio-details-slider .swiper-button-next:hover{ background:var(--gold); }
.portfolio-details-slider .swiper-button-prev:hover:after,
.portfolio-details-slider .swiper-button-next:hover:after{ color:var(--navy); }

/* Icon "expand" pemicu GLightbox — dipakai di slide utama & thumbnail */
.media-expand{
  position:absolute; z-index:3; display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%; background:rgba(7,10,19,0.55); color:var(--white);
  font-size:.85rem; text-decoration:none; transition:.2s ease; cursor:pointer;
}
.hero-frame .media-expand{ bottom:14px; right:14px; }
.hero-frame:hover .media-expand{ background:var(--gold); color:var(--navy); }

.thumbnail-grid .thumb-ph{
  display:block; height:78px; border-radius:8px; overflow:hidden; position:relative;
  background:linear-gradient(135deg, var(--charcoal), var(--navy));
}
.thumbnail-grid .thumb-ph::after{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size:14px 14px;
}
.thumbnail-grid .thumb-ph:hover{ box-shadow:0 0 0 2px var(--gold) inset; }

.material-badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.material-badges span{
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.05em; text-transform:uppercase;
  padding:7px 14px; border-radius:20px; background:var(--gold-tint); color:var(--charcoal); font-weight:600;
}

/* -- Kolom kanan: konten -- */
.portfolio-details-content{ height:100%; display:flex; flex-direction:column; }
@media (min-width:992px){ .portfolio-details-content{ padding-left:2rem; } }
@media (max-width:991px){ .portfolio-details-content{ padding-top:32px; } }

.project-meta{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; margin-bottom:22px; }
.project-badge{
  display:inline-block; padding:7px 16px; background:var(--navy); color:var(--gold);
  border-radius:20px; font-family:var(--font-mono); font-size:.7rem; letter-spacing:.08em;
  text-transform:uppercase; font-weight:600;
}
.date-client{ display:flex; flex-wrap:wrap; gap:18px; }
.date-client .meta-item{ display:flex; align-items:center; gap:6px; font-size:.85rem; color:var(--steel); }
.date-client .meta-item i{ color:var(--gold); }

.project-title{ font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; letter-spacing:-.01em; margin-bottom:16px; }

.project-overview{ margin-bottom:28px; }
.project-overview .lead{ font-size:1rem; line-height:1.85; color:var(--charcoal); opacity:.85; margin-bottom:20px; }

.project-accordion .accordion-item{ border:1px solid var(--line); background:none; margin-bottom:10px; border-radius:4px; overflow:hidden; }
.project-accordion .accordion-button{ font-family:var(--font-display); font-weight:600; font-size:.9rem; color:var(--charcoal); background:var(--white); box-shadow:none; padding:14px 18px; }
.project-accordion .accordion-button:not(.collapsed){ background:var(--gold-tint); color:var(--charcoal); box-shadow:none; }
.project-accordion .accordion-button:focus{ box-shadow:none; border-color:var(--line); }
.project-accordion .accordion-button i{ color:var(--gold); margin-right:8px; }
.project-accordion .accordion-button::after{ width:14px; height:14px; background-size:14px; }
.project-accordion .accordion-body{ padding:14px 18px 16px; font-size:.88rem; line-height:1.8; color:var(--charcoal); opacity:.85; }

.project-features{ margin-bottom:28px; }
.project-features h3{ font-family:var(--font-mono); font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:var(--steel); display:flex; align-items:center; gap:8px; margin-bottom:14px; font-weight:600; }
.project-features h3 i{ color:var(--gold); }
.feature-list{ list-style:none; padding:0; margin:0; }
.feature-list li{ display:flex; align-items:center; gap:10px; font-size:.88rem; padding:8px 0; border-bottom:1px solid var(--line); }
.feature-list li:last-child{ border-bottom:none; }
.feature-list li i{ color:var(--gold); }

.cta-buttons{ display:flex; flex-wrap:wrap; gap:12px; margin-top:auto; }

@media (max-width:991px){ .cta-buttons{ margin-top:24px; } }
@media (max-width:767px){
  .project-meta{ flex-direction:column; align-items:flex-start; }
  .cta-buttons{ width:100%; }
  .cta-buttons a{ flex:1; text-align:center; }
}


/* =========================================================================
   19. [DETAIL PORTOFOLIO] HERO FRAME (corner brackets)
   Dipakai untuk gambar utama di kolom media (§18).
   ========================================================================= */
.hero-frame{ position:relative; }
.hero-img{
  aspect-ratio:16/9; width:100%; position:relative; overflow:hidden; border-radius:10px;
  background:linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
}
.hero-img::after{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size:26px 26px;
}
.corner-brackets::before{
  content:""; position:absolute; inset:14px; z-index:2; pointer-events:none;
  background:
    linear-gradient(var(--gold),var(--gold)) top left / 22px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) top left / 2px 22px no-repeat,
    linear-gradient(var(--gold),var(--gold)) top right / 22px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) top right / 2px 22px no-repeat,
    linear-gradient(var(--gold),var(--gold)) bottom left / 22px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) bottom left / 2px 22px no-repeat,
    linear-gradient(var(--gold),var(--gold)) bottom right / 22px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) bottom right / 2px 22px no-repeat;
}


/* =========================================================================
   20. [DETAIL PORTOFOLIO] GALERI
   ========================================================================= */
.gallery-section{ padding:0 0 80px; }
.gallery-grid{ display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:170px; gap:12px; }
.gallery-grid .g-item{ position:relative; overflow:hidden; border-radius:8px; background:linear-gradient(135deg, var(--charcoal), var(--navy)); }
.gallery-grid .g-item::after{ content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size:18px 18px; }
.gallery-grid .g-item.big{ grid-column:span 2; grid-row:span 2; }
.gallery-grid .g-item .g-idx{ position:absolute; bottom:10px; left:10px; z-index:2; font-family:var(--font-mono); font-size:.65rem; color:rgba(255,255,255,0.7); letter-spacing:.08em; }

@media (max-width:767px){
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); grid-auto-rows:130px; }
  .gallery-grid .g-item.big{ grid-column:span 2; grid-row:span 1; }
}


/* =========================================================================
   21. [DETAIL PORTOFOLIO] RELATED & NAVIGASI PROYEK
   ========================================================================= */
.related-cta{ background:var(--gold-tint); padding:56px 0; }
.related-title{ font-weight:700; font-size:1.3rem; }
.related-sub{ color:var(--steel); font-size:.9rem; margin-top:4px; }

.proj-nav{ border-top:1px solid var(--line); padding:26px 0; }
.proj-nav a{ text-decoration:none; color:var(--charcoal); }
.proj-nav .nav-label{ font-family:var(--font-mono); font-size:.66rem; letter-spacing:.1em; color:var(--steel); text-transform:uppercase; }
.proj-nav .nav-name{ font-weight:600; font-size:.95rem; margin-top:3px; }
.proj-nav .prev:hover .nav-name, .proj-nav .next:hover .nav-name{ color:var(--gold); text-decoration:underline; }
