/* ═══════════════════════════════════════════════════════
   PT. MALANO PILAR KONSULTAN — MAIN STYLESHEET
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Custom Fonts ── */
@font-face {
  font-family: 'Batman Forever';
  src: url('../fonts/batmfa__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ── CSS Variables ── */
:root {
  --red:        #C0392B;
  --red-dark:   #922B21;
  --red-light:  #E74C3C;
  --yellow:     #F1C40F;
  --yellow-dark:#D4AC0D;
  --black:      #0D0D0D;
  --black-soft: #1A1A1A;
  --black-card: #222222;
  --gray-dark:  #2C2C2C;
  --gray:       #555555;
  --gray-light: #888888;
  --white:      #FFFFFF;
  --white-soft: #F5F5F5;
  --white-dim:  rgba(255,255,255,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.25);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:  'Inter', sans-serif;
  --font-head:  'Poppins', sans-serif;
  --nav-height: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black-soft);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-admin-btn {
  padding: 8px 20px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-admin-btn::after { display: none !important; }
.nav-admin-btn:hover { background: var(--red-light) !important; transform: translateY(-1px); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu ul a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu ul a:hover { color: var(--yellow); padding-left: 8px; }
.mobile-menu .admin-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px !important;
  background: var(--red);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0505 40%, #2d0a0a 70%, #0D0D0D 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  overflow: hidden;
}
/* Animated background orbs */
#home::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(192,57,43,0.18) 0%, transparent 70%);
  animation: float1 8s ease-in-out infinite;
}
#home::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(241,196,15,0.08) 0%, transparent 70%);
  animation: float2 10s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.03); }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 100px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-logo-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(192,57,43,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(192,57,43,0.2);
  overflow: hidden;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transform: scale(1.35);
}

.hero-company-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-company-name span { color: var(--red-light); }

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ── YouTube Embed ── */
.hero-video-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  justify-content: center;
}
.video-label::before, .video-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(192,57,43,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   SECTION COMMON STYLES
══════════════════════════════════════════ */
section { padding: 100px 24px; }
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.25);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black-soft);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
#tentang { background: var(--white-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-soft), var(--black-card));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-display {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(192,57,43,0.5));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(241,196,15,0.05));
}
.about-stats {
  position: absolute;
  bottom: -20px; right: -20px;
  display: flex;
  gap: 12px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--red);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}
.about-content { }
.about-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 40px;
}
.about-description p { margin-bottom: 16px; }
.vision-mission { }
.vm-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.vm-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.vm-card.mission { border-left-color: var(--yellow); }
.vm-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 12px;
}
.vm-icon {
  width: 32px; height: 32px;
  background: rgba(192,57,43,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.vm-card.mission .vm-icon { background: rgba(241,196,15,0.15); }
.vm-text { font-size: 0.93rem; color: var(--gray); line-height: 1.8; }
.vm-list { list-style: none; }
.vm-list li {
  padding: 4px 0;
  font-size: 0.93rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.vm-list li::before {
  content: '▸';
  color: var(--yellow-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
#layanan { background: var(--black-soft); }
#layanan .section-title { color: var(--white); }
#layanan .section-desc { color: rgba(255,255,255,0.5); }
#layanan .section-tag { 
  background: rgba(241,196,15,0.15);
  border-color: rgba(241,196,15,0.3);
  color: var(--yellow);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover .service-number { color: rgba(192,57,43,0.12); }
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(192,57,43,0.25);
  transform: scale(1.1);
}
.service-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 8px;
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }

.service-more-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  transition: var(--transition);
}
.service-card:hover .service-more-btn {
  color: var(--white);
  transform: translateX(4px);
}

/* last 2 cards center on last row */
.services-grid .service-card:nth-child(4) { grid-column: 1 / 2; }
.services-grid .service-card:nth-child(5) { grid-column: 2 / 3; }

/* ══════════════════════════════════════════
   PROJECT REFERENCE SECTION
══════════════════════════════════════════ */
#proyek { background: var(--white); }
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: var(--font-main);
  background: var(--white-soft);
  color: var(--gray);
  border: 1.5px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.project-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-soft), var(--black-card));
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
}
.project-card-img-placeholder svg { width: 40px; height: 40px; }
.project-category-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: rgba(192,57,43,0.9);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.project-card-body { padding: 20px; }
.project-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 10px;
  line-height: 1.4;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-light);
}
.project-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--red); }
.project-card-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.project-card:hover .project-card-more { gap: 8px; }

.projects-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-light);
}
.projects-empty svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: 0.3; }
.projects-empty p { font-size: 1rem; }
.projects-empty small { font-size: 0.85rem; opacity: 0.7; }

/* ══════════════════════════════════════════
   PROJECT MODAL / LIGHTBOX
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px; height: 36px;
  background: var(--black-soft);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--red); }
.modal-content { padding: 28px 32px 32px; clear: both; }
.modal-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 6px;
}
.modal-category {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--white-soft);
  border-radius: var(--radius-md);
}
.modal-info-item { }
.modal-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.modal-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-soft);
}
.modal-gallery-section { margin-top: 24px; }
.modal-gallery-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--white-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-gallery-title::before {
  content: '';
  width: 4px; height: 16px;
  background: var(--red);
  border-radius: 2px;
}
.modal-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.modal-img-grid img {
  width: 100%; height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.modal-img-grid img:hover { transform: scale(1.03); opacity: 0.9; }
.modal-no-img {
  color: var(--gray-light);
  font-size: 0.85rem;
  font-style: italic;
}

/* Image lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
#kontak { background: var(--black-soft); }
#kontak .section-title { color: var(--white); }
#kontak .section-desc { color: rgba(255,255,255,0.5); }
#kontak .section-tag {
  background: rgba(241,196,15,0.15);
  border-color: rgba(241,196,15,0.3);
  color: var(--yellow);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-info { }
.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-info-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-detail-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(192,57,43,0.3);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon.green { background: rgba(37,211,102,0.15); }
.contact-icon.red { background: rgba(192,57,43,0.15); }
.contact-icon.yellow { background: rgba(241,196,15,0.15); }
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.contact-actions { }
.contact-actions-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.contact-btns { display: flex; flex-direction: column; gap: 16px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: var(--transition);
}
.contact-btn:hover::before { opacity: 1; }
.contact-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wa-btn {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white);
}
.wa-btn:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.3); }
.email-btn {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}
.email-btn:hover { box-shadow: 0 12px 40px rgba(192,57,43,0.4); }
.contact-btn-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-btn-text { display: flex; flex-direction: column; }
.contact-btn-label { font-size: 0.72rem; opacity: 0.75; font-weight: 400; }
.contact-btn-value { font-size: 1rem; font-weight: 700; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-brand { }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  height: 44px; width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.08);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--red); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: var(--red); }
.footer-made {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: auto; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 72px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { position: static; margin-top: 20px; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .modal-info-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 20px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .contact-btns .contact-btn { padding: 16px 18px; }
  .project-filter { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.78rem; }
}

/* ══════════════════════════════════════════
   BATMAN FOREVER FONT APPLICATION
══════════════════════════════════════════ */
.batman-font {
  font-family: 'Batman Forever', 'Poppins', sans-serif;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   HERO TAGLINE UPDATES
══════════════════════════════════════════ */
.hero-tagline-main {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(192,57,43,0.4);
}
.hero-tagline-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.85;
}

/* ══════════════════════════════════════════
   ABOUT BIOGRAFI IMAGE
══════════════════════════════════════════ */
.biografi-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: contain;
  transition: var(--transition);
}
.biografi-img:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   FILTER COUNT BADGE
══════════════════════════════════════════ */
.filter-count {
  font-size: 0.75em;
  font-weight: 700;
  opacity: 0.75;
  margin-left: 2px;
}
.filter-btn.active .filter-count { opacity: 1; }

/* ══════════════════════════════════════════
   TOOLS NDT SECTION
══════════════════════════════════════════ */
.ndt-group { margin-bottom: 16px; }
.ndt-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(192,57,43,0.15);
}
.ndt-group-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.ndt-group-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black-soft);
}
.ndt-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ndt-tool-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}
.ndt-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,57,43,0.2);
}
.ndt-tool-img-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--black-soft), #2a2a2a);
  overflow: hidden;
}
.ndt-tool-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.ndt-tool-card:hover .ndt-tool-img-wrap img { transform: scale(1.05); }
.ndt-no-img {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  flex-direction: column;
  gap: 8px;
}
.ndt-tool-img-wrap.no-img img { display: none; }
.ndt-tool-img-wrap.no-img .ndt-no-img { display: flex; }
.ndt-tool-body { padding: 20px; }
.ndt-tool-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 8px;
}
.ndt-tool-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
}

/* NDT responsive */
@media (max-width: 900px) {
  .ndt-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ndt-tools-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SERVICE DETAIL MODAL STYLES (SEO-Friendly)
   ══════════════════════════════════════════ */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.3s ease forwards;
}
.service-modal-box {
  background: var(--white);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--black-soft);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  border: none;
}
.service-modal-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}
.service-modal-content {
  padding: 40px;
  overflow-y: auto;
  color: var(--black-soft);
}

/* Custom Scrollbar for Modal content */
.service-modal-content::-webkit-scrollbar {
  width: 6px;
}
.service-modal-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.02);
}
.service-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

/* Modal Inner Typo */
.service-modal-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-modal-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black-soft);
  line-height: 1.3;
}
.service-modal-title span {
  color: var(--red);
}
.service-modal-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}
.service-modal-subtitle {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin: 28px 0 14px;
  padding-left: 10px;
  border-left: 3px solid var(--red);
}
.service-modal-smalltitle {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black-soft);
  margin: 28px 0 10px;
}
.service-modal-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 14px;
}
.service-modal-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-modal-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.service-modal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}
.service-modal-steps {
  margin-bottom: 24px;
  padding-left: 20px;
}
.service-modal-steps li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}
.service-modal-steps li strong {
  color: var(--black-soft);
}
.service-modal-img-wrap {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fbfbfb;
}
.service-collage-img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .service-modal-content { padding: 30px 20px; }
  .service-modal-title { font-size: 1.35rem; }
  .service-modal-box { max-height: 90vh; }
}
