:root{
  --green:#1b5e3b;
  --green-2:#144a2f;
  --accent:#9fd63a;
  --soft:#eef7df;
  --muted:#6b7280;
  --card:#ffffff;
  --line:#e5e7eb;
  --shadow: 0 14px 30px rgba(16,24,40,.10);
}

.app-body{ background:#f6f8fb; color:#111827; }

/* Navbar */
.app-navbar{ background:#fff; }
.app-logo{ height:50px; width:auto; }
.app-toggler{ border:0; }
.app-toggler .navbar-toggler-icon{ filter: contrast(1.2); }
.nav-link{ color:#1f2937; font-weight:500; }
.nav-link.active{ color:var(--green); font-weight:700; }
.app-lang{ background:#eef2f7; padding:4px; border-radius:999px; display:flex; gap:6px; }
.app-lang-btn{ border-radius:999px; padding:4px 10px; font-weight:600; }
.app-icon-btn{ color:#111827; }
.app-link{ color:#111827; font-weight:600; }
.app-btn-pill{
  background:var(--green);
  color:#fff;
  border-radius:999px;
  padding:.55rem 1.05rem;
  font-weight:700;
}
.app-btn-pill:hover{ background:var(--green-2); color:#fff; }

/* Hero Home */
.app-hero{ padding:42px 0 30px; background:var(--soft); }
.hero-card{
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:28px;
  border:1px solid rgba(0,0,0,.04);
}


.hero-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:#e8f0ea;
  display:flex; align-items:center; justify-content:center;
  color:var(--green);
  margin-bottom:18px;
}
.hero-icon-dark{ background:rgba(255,255,255,.14); color:#fff; }
.hero-title{ font-size:32px; font-weight:800; margin:0 0 10px; }
.hero-desc{ color:#475569; margin:0 0 18px; }
.app-btn-dark{
  background:var(--green);
  color:#fff;
  border-radius:999px;
  padding:.7rem 1.2rem;
  font-weight:700;
}
.app-btn-dark:hover{ background:var(--green-2); color:#fff; }
.app-btn-accent{
  background:var(--accent);
  color:#0b2a1b;
  border-radius:999px;
  padding:.7rem 1.2rem;
  font-weight:800;
}
.app-btn-accent:hover{ filter:brightness(.95); }

.stat-card{
  background:#f7fbef;
  border:1px solid rgba(0,0,0,.05);
  border-radius:16px;
  padding:18px;
  text-align:center;
}
.stat-val{ font-size:28px; font-weight:900; color:var(--green); }
.stat-label{ font-size:12px; color:#6b7280; margin-top:4px; }

/* Page headers */
.page-head{ padding:30px 0 14px; background:#fff; border-bottom:1px solid var(--line); }
.page-head-soft{ padding:40px 0 22px; background:var(--soft); }
.page-title{ font-size:44px; font-weight:900; margin:0; }
.page-title.big{ font-size:46px; }
.page-sub{ margin-top:6px; color:#64748b; font-weight:500; }

/* Jobs */
.jobs-wrap{ padding:22px 0 10px; }
.jobs-searchbar{ background:#fff; padding:16px; border-radius:16px; border:1px solid var(--line); }
.jobs-count{ color:#111827; font-weight:700; }
.filter-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.filter-head{ display:flex; align-items:center; color:#111827; margin-bottom:10px; }
.filter-group{ margin-top:12px; }
.filter-label{ font-size:12px; color:#111827; font-weight:700; margin-bottom:6px; display:block; }

.job-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
}
.job-code{ font-size:12px; color:#64748b; font-weight:700; min-width:70px; }
.job-badge{
  background:#e9f2ec;
  color:var(--green);
  border-radius:999px;
  font-weight:800;
}
.job-title{ font-size:22px; font-weight:900; margin-top:2px; }
.job-company{ color:#334155; font-weight:700; margin-top:3px; }
.job-meta{ display:flex; flex-wrap:wrap; gap:14px; color:#64748b; font-size:13px; }
.job-meta i{ color:#94a3b8; }
.job-salary{ font-weight:900; color:var(--green); font-size:16px; }
.job-chip{
  background:#f1f5f9;
  color:#111827;
  border-radius:999px;
  font-weight:700;
}

/* Employers hero green */
.page-hero-green{
  background:var(--green);
  padding:46px 0 56px;
}
.hero-h1{ color:#fff; font-size:44px; font-weight:900; margin:0; }
.hero-sub{ color:rgba(255,255,255,.75); margin-top:8px; font-weight:500; }

/* Forms */
.form-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  max-width:860px;
  box-shadow: var(--shadow);
}
.contact-wrap{ padding:28px 0 10px; }

/* Contact info */
.info-item{
  display:flex; gap:12px;
  padding:12px 0;
  border-bottom:1px dashed #e5e7eb;
}
.info-ic{
  width:42px; height:42px; border-radius:14px;
  background:#eef2f7;
  display:flex; align-items:center; justify-content:center;
  color:var(--green);
}
.info-title{ font-weight:800; color:#111827; }
.info-val{ color:#64748b; font-weight:500; }
.map-box iframe{ border-radius:16px; }

/* Footer */
.app-footer{ background:var(--green); color:#eaf3ee; }
.app-footer-logo img{ height:50px; width:auto; filter:brightness(1.05); }
.app-footer-title{ color:#fff; font-weight:900; margin-bottom:12px; }
.app-footer-text{ color:rgba(255,255,255,.72); line-height:1.6; font-size:14px; }
.app-footer-list li{ margin:8px 0; }
.app-footer-list a{ color:rgba(255,255,255,.72); text-decoration:none; font-weight:600; }
.app-footer-list a:hover{ color:#fff; }
.app-footer-contact{ color:rgba(255,255,255,.75); font-size:13px; }
.app-footer-contact li{ margin:10px 0; }
.app-footer-contact i{ margin-right:8px; color:var(--accent); }
.app-footer-social a{ color:rgba(255,255,255,.70); font-size:18px; }
.app-footer-social a:hover{ color:#fff; }
.app-footer-hr{ border-color:rgba(255,255,255,.15); }
.app-footer-copy{ color:rgba(255,255,255,.60); font-size:13px; }
.app-footer-links a{ color:rgba(255,255,255,.70); text-decoration:none; font-weight:600; font-size:13px; }
.app-footer-links a:hover{ color:#fff; }

/* Mobile tweaks */
@media (max-width: 576px){
  .page-title{ font-size:38px; }
  .hero-title{ font-size:28px; }
  .hero-h1{ font-size:36px; }
  .app-hero{ padding:30px 0 22px; }
}

.about-sec{
  background:#fff;
  padding:44px 0;
  border-bottom:1px solid var(--line);
}

.about-card-one{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow: var(--shadow);
}

.about-photo-wrap{
  border-radius:18px;
  overflow:hidden;
  background:#f1f5f9;
  border:1px solid rgba(0,0,0,.04);
}

.about-img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
}

.about-content{
  padding:8px 6px;
}

.about-title{
  font-size:40px;
  font-weight:900;
  margin:0 0 10px;
}

.about-desc{
  color:#64748b;
  line-height:1.8;
  margin:0 0 18px;
}

@media (max-width: 576px){
  .about-card-one{ padding:16px; border-radius:18px; }
  .about-img{ height:240px; }
  .about-title{ font-size:30px; }
  .about-content{ padding:0; }
}
.hero-bg{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* background image layer */
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* overlay light */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.80) 60%,
    rgba(255,255,255,.92) 100%
  );
  z-index: 0;
}

.hero-bg > .hero-card{
  position: relative;
  z-index: 1;
}

/* overlay khusus kolom kanan yang gelap */
.hero-bg-dark::after{
  background: linear-gradient(180deg,
    rgba(20,74,47,.55) 0%,
    rgba(20,74,47,.72) 55%,
    rgba(20,74,47,.84) 100%
  );
}

.job-opps{ background:#fff; padding:48px 0; }
.job-opps-title{ font-size:44px; font-weight:900; margin:0; }
.job-opps-sub{ color:#64748b; margin-top:6px; font-weight:500; }

.job-opps-btn{
  background:#0ea5a8;
  color:#fff;
  border-radius:999px;
  padding:.7rem 1.1rem;
  font-weight:800;
}
.job-opps-btn:hover{ filter:brightness(.95); color:#fff; }

.job-opps-wrap{ margin-top:18px; }
.job-opps-track{
  display:flex;
  gap:26px;
  overflow:auto;
  scroll-behavior:smooth;
  padding:10px 6px 18px;
}
.job-opps-track::-webkit-scrollbar{ height:10px; }
.job-opps-item{ flex:0 0 auto; width:360px; }

.job-opps-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.job-opps-top{
  background:#bfeeee;
  padding:22px;
  min-height:210px;
}
.job-opps-type{ font-weight:700; opacity:.9; }
.job-opps-pos{ font-size:22px; font-weight:900; margin-top:10px; line-height:1.25; }
.job-opps-loc{ margin-top:26px; color:#0f172a; opacity:.85; display:flex; gap:8px; align-items:center; }

.job-opps-bottom{ padding:18px 22px 22px; }
.job-opps-desc{ color:#64748b; line-height:1.7; min-height:68px; }
.job-opps-apply{
  margin-top:14px;
  border:2px solid #0ea5a8;
  color:#0ea5a8;
  border-radius:999px;
  font-weight:800;
  padding:.55rem 1.1rem;
}
.job-opps-apply:hover{ background:#0ea5a8; color:#fff; }

.job-opps-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.job-opps-nav.left{ left:-10px; }
.job-opps-nav.right{ right:-10px; }
.info-pill{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
}
.info-pill b{ display:block; font-size:12px; color:#64748b; margin-bottom:4px; }
.detail-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.detail-h{ font-weight:900; margin:0 0 10px; }
.detail-text{ color:#334155; line-height:1.8; }
.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  background:#eef2f7;
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  color:#0f172a;
  font-size:12px;
}
.ts-opt{ display:flex; align-items:center; gap:10px; padding:4px 0; }
.ts-box{
  width:16px; height:16px; border-radius:4px;
  border:2px solid #cbd5e1; display:inline-block;
  background:#fff;
}
.ts-dropdown .active .ts-box,
.ts-dropdown [data-selected="true"] .ts-box{
  border-color: var(--green);
  background: var(--green);
}
.app-sheets{ padding: 64px 0; }
.section-title{ font-weight: 900; font-size: 34px; }
.section-sub{ color:#64748b; }

.app-card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.icon-round{
  width: 52px; height: 52px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background:#0f172a; color:#fff;
  font-size: 22px;
}
/* ===== Services block ===== */
.emp-block{ padding: 64px 0; }
.emp-block-dark{ background:#0b5a34; }
.emp-card{
  background: transparent;
  border-radius: 26px;
}
.emp-item{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
  color:#fff;
}
.emp-hex{
  width: 74px; height: 74px;
  border-radius: 22px;
  display:flex; align-items:center; justify-content:center;
  background:#9adf64;
  color:#0b5a34;
  font-size: 34px;
  margin-bottom: 14px;
}
.emp-title{ font-weight: 900; font-size: 22px; margin: 0 0 8px; }
.emp-desc{ color: rgba(255,255,255,.80); margin: 0; line-height: 1.65; }

.emp-badge{
  background:#9adf64;
  color:#0b5a34;
  font-weight: 800;
}

/* ===== Why Choose Us ===== */
.why-wrap{ padding: 64px 0; }
.why-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.why-list{ display:flex; flex-direction:column; gap: 18px; }
.why-item{
  display:flex; gap: 14px;
  align-items:flex-start;
  padding: 16px;
  border-radius: 18px;
  background:#f8fafc;
  border: 1px solid rgba(0,0,0,.05);
}
.why-ic{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background:#9adf64;
  color:#0b5a34;
  font-size: 22px;
  flex: 0 0 auto;
}
.why-title{ font-weight: 900; font-size: 20px; color:#0b5a34; }
.why-desc{ color:#334155; margin-top: 4px; line-height: 1.6; }

/* Dropdown navbar muncul saat hover (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* biar rapih nempel */
  }
  .navbar .dropdown:hover > .nav-link {
    color: var(--bs-navbar-active-color);
  }
}

/* optional: animasi halus */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: block;            /* penting: kita kontrol via opacity/visibility */
    transition: .15s ease;
    transform: translateY(6px);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}