*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #D32F2F; 
  --navy-dark: #B71C1C; 
  --navy-mid: #F44336; 
  --green: #E53935;
  --gold: #2B2D42; 
  --gold-light: #8D99AE; 
  --white: #FFFFFF;
  --off-white: #F8F9FA; 
  --light-gray: #EDF2F4; 
  --text-dark: #2B2D42;
  --text-mid: #4A4E69; 
  --text-light: #8D99AE;
  --logo-blue: #0044CC; 
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); }

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15); 
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 22px;
  color: var(--logo-blue); 
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  color: #fff; letter-spacing: 0.5px; line-height: 1.1;
}
.nav-logo-text span:last-child {
  font-size: 10px; color: rgba(255,255,255,0.8); letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 0; list-style: none;
  height: 100%;
}
.nav-links li {
  position: relative;
  display: flex; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0 20px;
  height: 72px;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(0,0,0,0.05); 
  border-bottom-color: var(--white);
}
.nav-actions {
  display: flex; align-items: center; gap: 14px;
}
.btn-nav {
  background: var(--white);
  color: var(--navy); 
  border: none; border-radius: 4px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { 
  background: var(--off-white); 
  transform: translateY(-2px);
}
.nav-lang {
  color: rgba(255,255,255,0.9);
  font-size: 13px; cursor: pointer; font-weight: 600;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.818) 0%, rgba(237, 242, 244, 0.356) 100%), 
              url('img/beranda/BERANDA.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  
  min-height: 620px;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  overflow: hidden;
  padding: 80px 60px 120px;
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(211,47,47,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,68,204,0.03) 0%, transparent 50%); 
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(43,45,66,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,45,66,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211, 47, 47, 0.08); 
  border: 1px solid rgba(211, 47, 47, 0.2);
  color: var(--navy);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 4px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 66px; font-weight: 700;
  color: var(--text-dark); 
  line-height: 1.05;
  max-width: 680px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  position: relative;
}

.hero h1 span { 
  color: var(--navy); 
}

.hero p {
  font-size: 17px; font-weight: 400;
  color: var(--text-dark); 
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-cta { 
  display: flex; gap: 16px; align-items: center; 
}

.btn-primary {
  background: var(--navy); 
  color: var(--white);
  padding: 14px 36px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.3);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { 
  background: var(--navy-dark); 
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 36px; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  background: rgba(211, 47, 47, 0.05);
}
.hero-visual {
  position: absolute; right: 0; top: 0;
  width: 45%; height: 100%;
  overflow: hidden;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EAEAEA, #D5D5D5); 
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.02) 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 40px
    );
}
.hero-img-text {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
.hero-img-icon {
  width: 80px; height: 80px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.hero-img-icon svg { opacity: 0.5; stroke: var(--text-mid); }
.hero-visual::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, #EDF2F4, transparent);
  z-index: 1;
}

.wave-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.wave-divider svg path { fill: var(--off-white); } 

.stats-bar {
  background: var(--off-white);
  padding: 0 60px;
  border-bottom: 1px solid var(--light-gray);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--light-gray);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 44px; font-weight: 700;
  color: var(--navy); 
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num sup { font-size: 24px; vertical-align: super; }
.stat-label {
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.stat-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

.section { padding: 100px 60px; background: var(--white); }
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
}
.section-label span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy);
}
.section-title {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.section-title.white { color: var(--text-dark); } 

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-desc {
  font-size: 16px; line-height: 1.9;
  color: var(--text-mid);
  margin-top: 24px; margin-bottom: 32px;
}
.about-highlights {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}
.highlight-row { display: flex; align-items: flex-start; gap: 14px; }
.highlight-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  margin-top: 7px;
}
.highlight-text {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.6;
}
.highlight-text strong { color: var(--text-dark); font-weight: 700; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy);
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--navy-dark); }
.btn-link svg { transition: transform 0.2s; }
.btn-link:hover svg { transform: translateX(4px); }
.about-image-box {
  background: var(--off-white);
  border-radius: 8px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.about-image-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8ECF0 0%, #D0D8E4 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: #9AA8BC;
}
.about-image-inner svg { opacity: 0.5; }
.about-image-inner p { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white);
  color: var(--text-dark);
  padding: 14px 20px;
  border-radius: 6px;
  border-left: 4px solid var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-badge-text {
  font-size: 12px; color: var(--text-mid);
  margin-top: 4px; font-weight: 600;
}

.services { background: var(--off-white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.services-desc {
  font-size: 16px; line-height: 1.8; color: var(--text-mid);
  margin-top: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 30px;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(211,47,47,0.08);
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--light-gray);
  transition: background 0.2s;
}
.service-card:hover::after { background: var(--navy); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(211,47,47,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { color: var(--navy); }
.service-title {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.service-desc {
  font-size: 14px; line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--light-gray);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase;
}

.values {
  background: var(--white); 
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.values-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(211,47,47,0.05) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,68,204,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.values-desc {
  font-size: 16px; line-height: 1.9;
  color: var(--text-mid);
  margin-top: 20px; margin-bottom: 48px;
}
.values-list {
  display: flex; flex-direction: column; gap: 28px;
}
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-num {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 700;
  color: rgba(211,47,47,0.15); 
  line-height: 1; flex-shrink: 0;
  width: 48px; text-align: center;
}
.value-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.value-text {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.7;
}
.values-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vcard {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vcard:hover { 
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}
.vcard-icon {
  margin-bottom: 16px;
  color: var(--navy);
}
.vcard-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.vcard-desc {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.7;
}
.vcard.gold-border { border-color: rgba(211,47,47,0.3); background: #FFF9F9; }

.projects { background: var(--off-white); }
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.project-img {
  height: 180px;
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.project-img.green { background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%); }
.project-img.dark { background: linear-gradient(135deg, #4A4E69 0%, #2B2D42 100%); }
.project-img-text {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.project-status {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.status-active { background: var(--navy); color: #fff; }
.status-done { background: var(--text-dark); color: #fff; }
.status-ongoing { background: var(--white); color: var(--text-dark); border: 1px solid var(--light-gray); }
.project-body { padding: 24px; }
.project-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.project-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.project-meta {
  display: flex; gap: 16px;
  font-size: 12px; color: var(--text-light);
  margin-bottom: 14px;
}
.project-meta span { display: flex; align-items: center; gap: 4px; }
.project-desc {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.7;
}

.certs {
  background: var(--white);
  padding: 60px;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}
.certs-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}
.certs-row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.cert-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.cert-badge:hover { opacity: 1; transform: translateY(-2px); }
.cert-icon {
  width: 64px; height: 64px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.cert-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mid);
}

.cta {
  background: var(--navy); 
  padding: 80px 60px;
  position: relative; overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px; position: relative;
}
.cta h2 {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 700;
  color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.cta p {
  font-size: 16px; color: rgba(255,255,255,0.9);
  line-height: 1.8; margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; }
.btn-white {
  background: #fff; color: var(--navy);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 600; font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cta-visual {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
}

footer {
  background: var(--off-white);
  color: var(--text-mid);
  padding: 64px 60px 0;
  border-top: 1px solid var(--light-gray);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-gray);
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 16px;
  color: var(--logo-blue);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
}
.footer-tagline {
  font-size: 14px; line-height: 1.8;
  margin-bottom: 24px; max-width: 280px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; margin-bottom: 10px; color: var(--text-mid);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--navy); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  width: fit-content;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.footer-links a:hover { color: var(--navy); padding-left: 4px; }
.footer-links a:hover::before { transform: scale(1.5); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
}
.footer-copy { font-size: 12px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 34px; height: 34px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--off-white); border-color: var(--navy); }
.social-btn svg { color: var(--text-mid); transition: color 0.2s; }
.social-btn:hover svg { color: var(--navy); }

.hero-inner {
  position: relative;
  background: var(--navy);
  padding: 80px 60px;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(211,47,47,0.95) 0%, rgba(183,28,28,0.8) 100%), 
              repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 8px);
  z-index: 1;
}
.hero-inner-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 800px;
}
.hero-inner h1 {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 700;
  color: var(--white);
  line-height: 1.1; margin-top: 12px;
}
.breadcrumb {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb span { color: var(--white); font-weight: 700; }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.overview-img-wrapper {
  position: relative;
  height: 500px;
}
.img-box {
  position: absolute;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase;
  text-align: center; border: 1px solid #E2E8F0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.img-main {
  width: 80%; height: 80%; top: 0; right: 0;
  background: linear-gradient(135deg, #EAEAEA, #D5D5D5);
}
.img-sub {
  width: 65%; height: 50%; bottom: 0; left: 0;
  background: linear-gradient(135deg, #F8F9FA, #EAEAEA);
  border: 8px solid var(--white);
}
.experience-badge {
  position: absolute; top: 40px; left: -20px;
  background: var(--navy); color: var(--white);
  padding: 24px; border-radius: 8px; text-align: center;
  box-shadow: 0 10px 25px rgba(211,47,47,0.3);
}
.experience-badge h2 { font-family: var(--font-head); font-size: 42px; line-height: 1; margin-bottom: 4px; }
.experience-badge p { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

.desc-lead { font-size: 20px; font-weight: 600; color: var(--navy); margin-top: 24px; margin-bottom: 16px; line-height: 1.5; }
.desc-text { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.overview-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.overview-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-dark); }
.overview-list li svg { color: var(--navy); width: 20px; height: 20px; flex-shrink: 0; }

.vision-mission { background: var(--off-white); }
.vm-container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px;
}
.vm-box {
  background: var(--white); padding: 50px; border-radius: 12px;
  border: 1px solid var(--light-gray);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.vm-box:hover { transform: translateY(-5px); border-color: rgba(211,47,47,0.3); }
.vm-box.visi { background: var(--navy); color: var(--white); border: none; }
.vm-box.visi h3 { color: var(--white); }
.vm-box.visi p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.9; }
.vm-icon { font-size: 48px; margin-bottom: 24px; }
.vm-box h3 { font-family: var(--font-head); font-size: 32px; color: var(--text-dark); margin-bottom: 20px; }
.misi-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.misi-list li { position: relative; padding-left: 24px; font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.misi-list li::before {
  content: '■'; position: absolute; left: 0; top: 0; color: var(--navy); font-size: 12px;
}

.timeline-section { background: var(--white); }
.timeline-header { margin-bottom: 60px; }
.timeline {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--light-gray); transform: translateX(-50%);
}
.timeline-item {
  position: relative; width: 50%; padding: 0 40px 50px 0;
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
}
.timeline-item.right {
  margin-left: 50%; padding: 0 0 50px 40px;
  align-items: flex-start; text-align: left;
}
.timeline-dot {
  position: absolute; right: -10px; top: 0;
  width: 20px; height: 20px; background: var(--navy);
  border: 4px solid var(--white); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(211,47,47,0.1); z-index: 2;
}
.timeline-item.right .timeline-dot { left: -10px; right: auto; }
.timeline-date {
  font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--navy);
  line-height: 1; margin-bottom: 12px;
}
.timeline-content h4 {
  font-family: var(--font-head); font-size: 24px; color: var(--text-dark); margin-bottom: 12px;
}
.timeline-content p {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
}

.featured-news-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 60px;
}
.featured-img {
  position: relative;
  height: 100%; min-height: 400px;
}
.featured-img .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #4A4E69, #2B2D42);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
}
.news-category {
  position: absolute; top: 24px; left: 24px;
  background: var(--navy); color: var(--white);
  padding: 6px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.featured-content {
  padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.news-meta {
  font-size: 13px; font-weight: 600; color: var(--text-light);
  margin-bottom: 12px;
}
.featured-title {
  font-family: var(--font-head); font-size: 36px; font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
}
.featured-desc {
  font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(211,47,47,0.08);
}
.news-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.news-card-img .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EAEAEA, #D5D5D5);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 11px; font-weight: 600; text-transform: uppercase;
  transition: transform 0.5s;
}
.news-card-img .green-tint { background: linear-gradient(135deg, #ffcdd2, #ef9a9a); color: var(--navy); }
.news-card-img .dark-tint { background: linear-gradient(135deg, #8D99AE, #4A4E69); color: var(--white); }
.news-card:hover .img-placeholder { transform: scale(1.05); }

.news-category-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white); color: var(--navy);
  padding: 4px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.news-card-body { padding: 24px; }
.news-card-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  line-height: 1.3; margin-bottom: 12px;
}
.news-card-title a {
  color: var(--text-dark); text-decoration: none; transition: color 0.2s;
}
.news-card-title a:hover { color: var(--navy); }
.news-card-excerpt {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}

.pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 60px;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; min-width: 40px; padding: 0 12px;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 4px; font-size: 14px; font-weight: 600; color: var(--text-mid);
  text-decoration: none; transition: all 0.2s;
}
.pagination a:hover:not(.disabled) {
  border-color: var(--navy); color: var(--navy); background: rgba(211,47,47,0.05);
}
.pagination a.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.pagination .disabled {
  opacity: 0.5; cursor: not-allowed;
}
.pagination .page-dots { border: none; background: transparent; }

.bidang-usaha-section {
  position: relative;
  background: var(--white);
  padding: 80px 0 120px;
  overflow: hidden;
}
.bu-bg-stripes {
  position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: repeating-linear-gradient(
    90deg,
    #B71C1C,
    #B71C1C 100px,
    #D32F2F 100px,
    #D32F2F 200px
  );
  z-index: 1;
}
.bu-container {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.bu-title {
  font-family: var(--font-head); font-size: 64px; font-weight: 700;
  color: var(--white); line-height: 0.9; margin-bottom: 60px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.bu-grid {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.bu-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1; min-width: 140px;
}
.bu-icon {
  width: 120px; height: 120px;
  background: #A50000; border: 6px solid var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.bu-icon svg { width: 50px; height: 50px; }
.bu-item:hover .bu-icon { transform: scale(1.1); background: var(--navy); }
.bu-item p {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; line-height: 1.2;
}

.exp-section {
  background: #EAEAEA; 
  padding: 0 0 100px 0;
}
.exp-banner {
  background: linear-gradient(90deg, #A50000 0%, #D32F2F 50%, #A50000 100%);
  text-align: center; padding: 24px 0; margin-bottom: 60px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.exp-banner h2 {
  font-family: var(--font-head); font-size: 42px; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
}
.exp-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
}
.exp-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  width: 280px; text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 2px solid var(--white);
  transition: transform 0.3s;
}
.exp-card:hover { transform: translateY(-5px); border-color: var(--navy); }
.exp-img-box { position: relative; height: 160px; }
.img-dummy {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #8D99AE, #4A4E69);
  color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
}
.exp-date-tab {
  position: absolute; bottom: 0; left: 0; width: 100%;
  display: flex; background: rgba(0,0,0,0.6);
}
.exp-date-tab .date {
  flex: 1; color: var(--white); font-size: 9px; font-weight: 600;
  padding: 6px; text-align: left; padding-left: 12px;
}
.exp-date-tab .year {
  background: var(--white); color: var(--text-dark);
  font-size: 11px; font-weight: 700; padding: 6px 12px;
  border-top-left-radius: 16px;
}
.exp-body { padding: 24px 16px; }
.exp-body h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--navy); line-height: 1.1;
  text-transform: uppercase; min-height: 44px; 
}
.exp-client {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}

.accordion-section {
  background-color: var(--white);
  padding: 20px 60px 80px;
}
.accordion-container {
  max-width: 900px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px; 
}
.accordion-item {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.accordion-header {
  background-color: var(--navy); 
  color: #ffffff; 
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}
.accordion-header:hover {
  background-color: var(--navy-dark); 
}
.accordion-header .icon {
  font-size: 24px;
  font-weight: 800;
  transition: transform 0.3s ease;
}
.accordion-content {
  background-color: var(--off-white); 
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.8;
  border: 1px solid var(--light-gray);
  border-top: none;
}
.accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 3000px; 
}

@media screen and (min-width: 992px) {
  .accordion-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    height: 75vh; 
    min-height: 600px;
    max-width: 1200px !important;
    gap: 16px !important;
  }

  .accordion-item {
    flex: 1; 
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
  }

  .accordion-item.active {
    flex: 3; 
  }

  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
    height: 100%; 
    transition: all 0.4s ease;
  }

  .accordion-item.active .accordion-header {
    height: auto; 
  }

  .header-title-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
  }

  .header-cover-img {
    width: 100%;
    flex: 1;
    border-radius: 8px;
    transition: all 0.4s ease;
    opacity: 1;
  }

  .accordion-item.active .header-cover-img {
    opacity: 0;
    flex: 0;
    height: 0;
    margin: 0;
    display: none;
  }

  .accordion-content {
    padding: 0 !important;
    height: 0;
    overflow-y: auto; 
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .accordion-item.active .accordion-content {
    height: 100%;
    padding: 20px 24px !important;
    opacity: 1;
  }
  
  .accordion-content::-webkit-scrollbar { width: 6px; }
  .accordion-content::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }

  .bu-inner-list .acc-inner { flex-direction: row !important; align-items: center !important; }
  .bu-inner-list .acc-img { width: 240px !important; height: 150px !important; }
  .accordion-content .exp-grid { display: flex !important; flex-wrap: wrap !important; flex-direction: row !important; gap: 20px !important; justify-content: center !important;}
  .accordion-content .exp-card { width: calc(50% - 20px) !important; }
}

.acc-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
}

.acc-text {
  flex: 1; 
}

.acc-img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; 
  overflow: hidden !important;
  background: #00000000; 
}

.acc-img img,
.acc-img svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 120px; 
  max-height: 120px;
  object-fit: contain !important;
  transition: transform 0.3s ease;
}

.acc-card:hover .acc-img img,
.acc-card:hover .acc-img svg {
  transform: scale(1.1);
}

.acc-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EAEAEA, #D5D5D5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .acc-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .acc-img {
    width: 100%;
    height: 180px;
  }
}

.fraud-alert {
  display: flex;
  gap: 24px;
  background: #FFF3F3; 
  border: 1px solid var(--navy-dark);
  border-left: 6px solid var(--navy-dark);
  padding: 24px 30px;
  border-radius: 8px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(211,47,47,0.05);
}
.fraud-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}
.fraud-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.fraud-text p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 30px 40px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  border-color: var(--navy-dark);
}
.job-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.job-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
  flex-wrap: wrap;
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.job-badge {
  background: var(--off-white);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(211,47,47,0.2);
}

@media screen and (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }
}

.contact-page-section {
  background: var(--off-white);
  padding: 80px 60px 0;
}
.contact-grid {

  grid-template-columns: 1fr 1.2fr;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.detail-item h4 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.detail-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--light-gray);
  margin-top: -120px; 
  position: relative;
  z-index: 5;
}
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group {
  flex: 1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(211,47,47,0.1);
}
.form-control::placeholder {
  color: #A0AEC0;
}

.map-container {
  width: 100%;
  margin-top: 80px;
  background: var(--light-gray);
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    margin-top: 0;
  }
  .form-row {
    flex-direction: column;
  }
}

.contact-image-wrapper {
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--light-gray);
  margin-top: 10px; 
  position: relative;
  z-index: 5;
  height: 650px; 
  float: right;
}

.img-placeholder-contact {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4A4E69, #2B2D42); 
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.foto-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .contact-image-wrapper {
    margin-top: 0;
    height: 300px;
  }
}

.sdm-section {
  background: var(--white);
  padding: 60px;
}

.sdm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 0; 
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
}

.sdm-left {
  background: var(--navy); 
  padding: 80px 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.sdm-bg-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(135deg, rgba(183,28,28,0.9), rgba(211,47,47,0.8));
  z-index: 1;
}

.sdm-left h2 {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.85;
  position: relative; 
  z-index: 2;
  letter-spacing: -1px;
}

.sdm-right {
  padding: 60px 50px;
  display: flex;
  align-items: center;
  background: var(--white);
}

.sdm-list {
  list-style: none;
  position: relative;
  padding-left: 24px;
}


.sdm-list::before {
  content: '';
  position: absolute;
  left: 0; 
  top: 10px; 
  bottom: 0;
  width: 2px;
  background: var(--navy); 
}


.sdm-list::after {
  content: '▼';
  position: absolute;
  left: -3px; 
  bottom: -14px;
  color: var(--navy);
  font-size: 9px;
}

.sdm-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.sdm-list li:last-child {
  margin-bottom: 0;
}

.sdm-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy); 
  width: 32px; 
  text-align: right;
  flex-shrink: 0;
}

.sdm-role {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

@media screen and (max-width: 768px) {
  .sdm-container { 
    grid-template-columns: 1fr; 
  }
  .sdm-left { 
    padding: 60px 30px; 
    justify-content: center;
    text-align: center;
  }
  .sdm-left h2 { 
    font-size: 54px; 
  }
  .sdm-right { 
    padding: 50px 30px; 
  }
}

.job-list { display: flex; flex-direction: column; gap: 20px; max-width: 1000px; margin: 0 auto; }
.job-card {
  background: var(--white); border: 1px solid var(--light-gray);
  padding: 30px 40px; border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.job-card:hover {
  transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); border-color: var(--navy-dark);
}
@media screen and (max-width: 768px) {
  .job-card { flex-direction: column; align-items: flex-start !important; gap: 20px; padding: 24px; }
  .job-info { padding-right: 0 !important; }
}


.modal-overlay {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background-color: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: modalMumbul 0.3s ease-out;
  
  max-height: 85vh;
  overflow-y: auto; 
}

.modal-box::-webkit-scrollbar {
  width: 6px;
}
.modal-box::-webkit-scrollbar-track {
  background: var(--off-white);
  border-radius: 8px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}

@keyframes modalMumbul {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.tutup-modal {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s;
}
.tutup-modal:hover { color: var(--navy); }

.modal-title {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-right: 30px;
}
.modal-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.modal-list {
  padding-left: 20px;
  margin-bottom: 30px;
}
.modal-list li {
  margin-bottom: 8px;
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 15px;
}
.modal-contact {
  background: var(--off-white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--navy);
}
.modal-contact h4 { margin-bottom: 8px; color: var(--text-dark); }
.modal-contact p { margin-bottom: 12px; color: var(--text-mid); font-size: 14px; }
.modal-contact ul { list-style: none; padding: 0; }
.modal-contact ul li { font-size: 14px; color: var(--text-dark); margin-bottom: 6px; }
.modal-overlay {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background-color: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: modalMumbul 0.3s ease-out;
}

@keyframes modalMumbul {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.tutup-modal {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s;
}
.tutup-modal:hover { color: var(--navy); }

.modal-title {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-right: 30px;
}
.modal-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.modal-list {
  padding-left: 20px;
  margin-bottom: 30px;
}
.modal-list li {
  margin-bottom: 8px;
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 15px;
}
.modal-contact {
  background: var(--off-white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--navy);
}
.modal-contact h4 { margin-bottom: 8px; color: var(--text-dark); }
.modal-contact p { margin-bottom: 12px; color: var(--text-mid); font-size: 14px; }
.modal-contact ul { list-style: none; padding: 0; }
.modal-contact ul li { font-size: 14px; color: var(--text-dark); margin-bottom: 6px; }

.partner-section {
  background: var(--white);
  padding: 40px 60px;
  border-bottom: 1px solid var(--light-gray);
}

.partner-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.partner-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap; 
}

.partner-logos img {
  max-height: 300px; 
  max-width: 150px; 
  object-fit: contain;
  filter: grayscale(50%) opacity(60%); 
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logos img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .partner-section {
    padding: 30px 20px;
  }
  .partner-logos {
    gap: 30px;
  }
  .partner-logos img {
    max-height: 40px;
    max-width: 120px;
  }
}

.nav-logo-img {
  height: 46px; 
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05); 
}

.footer-logo-img {
  height: 40px; 
  width: auto;
  object-fit: contain;
  margin-right: 4px; 
}

/* =========================================
   TAMBAHAN CSS BUAT KATALOG UNIT (JUAL/SEWA)
   ========================================= */
.unit-section {
  padding: 80px 60px;
}
.unit-grid {
  display: grid;
  /* Bikin auto-responsive: 3 kolom di laptop, 1 kolom di HP */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(211,47,47,0.08);
  border-color: var(--navy);
}
.unit-img-box {
  position: relative;
  height: 240px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.unit-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* Efek zoom foto pas kotak disorot */
.unit-card:hover .unit-img-box img {
  transform: scale(1.08);
}
.unit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.unit-badge.sewa {
  background: var(--navy);
  color: var(--white);
}
.unit-badge.jual {
  background: #2B2D42; /* Warna gelap elegan buat unit dijual */
  color: var(--white);
}
.unit-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1; /* Biar tombolnya otomatis sejajar di bawah */
}
.unit-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.unit-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: auto; 
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  .unit-section {
    padding: 60px 20px;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.muncul {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }