/* ===== ARK Website - Tema Utama ===== */
:root {
  --ark-navy: #0f172a;
  --ark-navy-light: #1e293b;
  --ark-teal: #087533;
  --ark-teal-light: #0a8f3d;
  --ark-teal-soft: rgba(13, 148, 136, 0.12);
  --ark-gold: #d97706;
  --ark-bg: #f8fafc;
  --ark-card: #ffffff;
  --ark-text: #334155;
  --ark-text-muted: #64748b;
  --ark-border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --fs-body: clamp(0.94rem, 0.2vw + 0.9rem, 1.02rem);
  --fs-small: clamp(0.82rem, 0.12vw + 0.8rem, 0.92rem);
  --fs-h1: clamp(1.85rem, 1.6vw + 1.25rem, 2.8rem);
  --fs-h2: clamp(1.45rem, 1.1vw + 1.05rem, 2.05rem);
  --fs-h3: clamp(1.2rem, 0.7vw + 0.95rem, 1.55rem);
  --fs-h4: clamp(1.08rem, 0.42vw + 0.94rem, 1.3rem);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
  --bs-border-radius-2xl: 0;
  --bs-border-radius-pill: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 0.22vw + 13px, 17px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--ark-bg);
  color: var(--ark-text);
  font-size: var(--fs-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
.h1 {
  font-size: var(--fs-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
}

h3,
.h3 {
  font-size: var(--fs-h3);
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-size: var(--fs-h4);
}

p,
li,
td,
th,
label,
input,
textarea,
select,
button,
a {
  font-size: 1em;
}

.small,
small,
.form-text {
  font-size: var(--fs-small) !important;
}

main {
  flex: 1;
}

/* ===== Page Animations (reveal on scroll) ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(2px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ===== Navbar ===== */
.navbar-ark {
  background: #ffffff !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* ===== Page Hero (banner) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 3.1rem 1.75rem;
  background: #0b3b24;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 18% 0%, rgba(250, 204, 21, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(2, 74, 18, 0.55), rgba(2, 74, 18, 0.75));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  color: #063b22;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-hero-title {
  margin-top: 0.9rem;
  margin-bottom: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  text-wrap: balance;
}

.page-hero-desc {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.85;
  text-wrap: normal;
}

.page-hero-ornament {
  position: absolute;
  right: -80px;
  top: -70px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(250, 204, 21, 0.18), transparent 60%);
  filter: blur(0.2px);
  z-index: 1;
  pointer-events: none;
}

.page-hero-ornament::after {
  content: "";
  position: absolute;
  inset: 44px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  transform: rotate(10deg);
}

@media (max-width: 991.98px) {
  .page-hero {
    border-radius: 18px;
    padding: 2.4rem 1.25rem;
  }

  .page-hero-ornament {
    right: -140px;
    top: -120px;
    width: 320px;
    height: 320px;
  }
}

.navbar-ark .navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ark-navy) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.navbar-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.navbar-brand-text {
  font-size: clamp(0.82rem, 0.45vw + 0.72rem, 1.05rem);
  line-height: 1;
  white-space: normal;
}

.navbar-ark .nav-link {
  color: rgba(15, 23, 42, 0.84) !important;
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.navbar-ark .nav-link:hover,
.navbar-ark .nav-link:focus {
  color: var(--ark-teal) !important;
  background: rgba(13, 148, 136, 0.08);
}

.navbar-ark .dropdown-menu {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  margin-top: 0.35rem;
  background: #ffffff;
}

.navbar-ark .dropdown-item {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--ark-text);
}

.navbar-ark .dropdown-item:hover {
  background: var(--ark-teal-soft);
  color: var(--ark-teal);
}

.navbar-ark .navbar-toggler {
  border-color: rgba(15, 23, 42, 0.15);
  padding: 0.4rem 0.5rem;
}

.navbar-ark .navbar-toggler-icon {
  filter: none;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: calc(100svh - 78px);
  background: linear-gradient(180deg, #06673c 0%, #035415 50%, #024a12 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.hero-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 84, 21, 0.5) 0%, rgba(2, 74, 18, 0.65) 100%);
  pointer-events: none;
}

.hero-section::before {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  min-height: min(720px, calc(100svh - 120px));
}

.hero-copy-col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy-col,
.hero-visual-col {
  position: relative;
}

.hero-copy {
  padding-left: 0.5rem;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #035415;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: #facc15;
}

.hero-simple {
  min-height: min(720px, calc(100svh - 120px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.hero-title-simple {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}

.hero-description-simple {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: normal;
}

.hero-actions-simple {
  gap: 0.8rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.hero-description {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.4rem;
}

.hero-actions .btn {
  padding: 0.95rem 1.6rem;
}

.hero-link-btn {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #1f3e2c;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.hero-link-btn:hover {
  color: #035415;
  background: #ffffff;
  border-color: rgba(3, 84, 21, 0.14);
}

.hero-link-btn i {
  font-size: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 3rem;
  row-gap: 0;
  width: fit-content;
  max-width: 100%;
  align-items: flex-start;
}

.hero-stat-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: none;
  min-width: 0;
}

.hero-stat-item:hover {
  transform: none;
  box-shadow: none;
}

.hero-stat-number {
  display: block;
  color: #035415;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  display: block;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-width: 14ch;
}

.hero-visual {
  min-height: 610px;
  position: relative;
}

.hero-logo-scene {
  position: absolute;
  inset: 2rem 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-logo-image {
  position: relative;
  width: min(520px, 86%);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 28px 36px rgba(15, 23, 42, 0.12));
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-logo-fallback {
  position: relative;
  z-index: 2;
  width: min(300px, 56%);
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(145deg, #0c6b31, #0a4e23);
  box-shadow:
    0 24px 36px rgba(15, 23, 42, 0.16),
    inset 0 0 0 10px rgba(240, 193, 74, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8e4a1;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  min-width: 176px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.hero-badge strong {
  display: block;
  color: #163420;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.hero-badge span {
  display: block;
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-badge-top {
  top: 0.5rem;
  left: 3rem;
}

.hero-badge-left {
  left: 0;
  top: 42%;
  transform: translateY(-50%);
}

.hero-badge-bottom {
  right: 0.5rem;
  bottom: 1rem;
}

.hero-badge-top strong::before,
.hero-badge-left strong::before,
.hero-badge-bottom strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.45rem;
  border-radius: 999px;
  vertical-align: middle;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== Section Umum ===== */
.page-section {
  padding: 4rem 0;
}

.page-section-screen {
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
}

.page-section-screen .container {
  width: 100%;
}

.page-section.alt {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.page-section-news .card-ark .card-img-top {
  height: 170px;
}

.page-section-news .card-ark .card-text {
  line-height: 1.55;
}

.page-section-gallery .gallery-card img {
  height: 165px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ark-teal);
  margin-bottom: 0.5rem;
}

.page-title {
  font-weight: 800;
  color: var(--ark-navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-title + .lead,
.page-title + p {
  color: var(--ark-text-muted);
  max-width: 640px;
}

/* ===== Cards ===== */
.card-ark {
  background: var(--ark-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-ark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-ark .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-ark:hover .card-img-top {
  transform: scale(1.03);
}

.card-ark .card-title {
  font-weight: 700;
  color: var(--ark-navy);
}

.card-ark .card-text {
  color: var(--ark-text-muted);
  font-size: 0.95rem;
}

.gallery-card {
  background: var(--ark-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card .card-body {
  padding: 1rem;
}

.gallery-card .card-title {
  font-weight: 600;
  color: var(--ark-navy);
  font-size: 0.95rem;
}

/* ===== Buttons ===== */
.btn-ark {
  font-weight: 600;
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-ark-primary {
  background: #0a8f3d;
  border-color: #0a8f3d;
  color: #fff;
}

.btn-ark-primary:hover {
  background: #087533;
  border-color: #087533;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 143, 61, 0.28);
}

.btn-outline-ark {
  border: 2px solid var(--ark-teal);
  color: var(--ark-teal);
  background: transparent;
}

.btn-outline-ark:hover {
  background: var(--ark-teal-soft);
  color: var(--ark-teal);
  border-color: var(--ark-teal);
  transform: translateY(-1px);
}

/* ===== Form ===== */
.form-control:focus,
.form-select:focus {
  border-color: var(--ark-teal);
  box-shadow: 0 0 0 3px var(--ark-teal-soft);
}

.form-label {
  font-weight: 600;
  color: var(--ark-navy);
}

/* ===== Table ===== */
.table-ark {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-ark thead th {
  background: var(--ark-navy) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
}

.table-ark tbody tr {
  transition: background 0.2s;
}

.table-ark tbody tr:hover {
  background: var(--ark-teal-soft);
}

.table-ark td {
  padding: 0.9rem 1.25rem;
  vertical-align: middle;
}

/* ===== Footer ===== */
.footer-ark {
  background: linear-gradient(180deg, #025415 0%, #01390f 100%) !important;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.25rem !important;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ark .container {
  position: relative;
}

.footer-cta {
  padding: 0 0 3rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.footer-cta-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 540px;
  margin-bottom: 1rem;
}

.footer-cta-title span {
  color: #facc15;
}

.footer-cta-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #facc15;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 10px;
  padding: 0.9rem 1.15rem;
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-cta-button:hover {
  color: #111827;
  background: #fde047;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(250, 204, 21, 0.24);
}

.footer-qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-qr-card {
  text-align: center;
}

.footer-qr-box {
  width: 138px;
  height: 138px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.qr-code-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.footer-qr-box i {
  font-size: 5rem;
  line-height: 1;
}

.footer-qr-caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid {
  padding-bottom: 2rem;
}

.footer-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-subtitle {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  max-width: 320px;
}

.footer-social-list,
.footer-contact-list,
.footer-nav-list,
.footer-office-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-social-item:hover {
  color: #fff;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-social-icon.facebook {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.footer-social-icon.instagram {
  background: linear-gradient(135deg, #ec4899, #7c3aed);
}

.footer-social-icon.tiktok {
  background: linear-gradient(135deg, #111827, #ef4444);
}

.footer-social-icon.youtube {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.footer-office-item h5 {
  color: #facc15;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.footer-office-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  padding-left: 0.8rem;
  position: relative;
}

.footer-office-item p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-contact-card:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-nav-list a:hover {
  color: #fff;
}

@media (min-width: 992px) {
  .footer-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.5rem;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

@media (max-width: 991.98px) {
  .navbar-ark .navbar-brand {
    max-width: min(92%, 360px);
  }

  .navbar-brand-text {
    display: inline-block;
    max-width: 100%;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    line-height: 1.15;
  }

  .page-hero-title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .page-hero-desc {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .page-section {
    padding-top: 1.6rem;
    padding-bottom: 1.4rem;
  }

  .page-section.pt-0 {
    padding-top: 0.5rem !important;
  }

  .card-ark .card-body {
    padding: 1rem 1rem;
  }

  .gallery-card img {
    height: 160px;
  }

  .partner-logo-wrap {
    padding: 0.85rem 0.85rem;
  }

  .lang-fab {
    right: 14px;
    bottom: 14px;
  }

  .hero-section {
    min-height: auto;
    padding: 2.5rem 0 1.5rem;
  }

  .hero-section::before {
    left: 18px;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-simple {
    min-height: auto;
    padding: 2.25rem 0 1.25rem;
  }

  .page-section-screen {
    min-height: auto;
  }

  .hero-copy {
    padding-left: 0.25rem;
    max-width: none;
  }

  .hero-eyebrow {
    margin-bottom: 0.9rem;
  }

  .hero-description {
    max-width: none;
  }

  .hero-actions {
    margin-bottom: 1.75rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-stat-item {
    min-height: auto;
    padding: 0.95rem 0.95rem 0.9rem;
    flex: initial;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-logo-scene {
    inset: 3.25rem 0.75rem 1rem 0.75rem;
  }

  .hero-badge-top {
    left: 1rem;
    top: 0.75rem;
  }

  .hero-badge-left {
    left: 0.75rem;
    top: auto;
    bottom: 4.75rem;
    transform: none;
  }

  .hero-badge-bottom {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .hero-badge {
    min-width: 150px;
    padding: 0.7rem 0.9rem;
  }

  .footer-cta {
    padding-bottom: 2.25rem;
    margin-bottom: 1.75rem;
  }

  .footer-cta-title {
    max-width: none;
  }

  .footer-qr-wrap {
    justify-content: flex-start;
  }

  .footer-desc {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand-text {
    max-width: min(60vw, 240px);
    font-size: clamp(0.75rem, 1.8vw, 0.92rem);
    line-height: 1.15;
  }

  .page-hero {
    padding: 2.1rem 1.05rem;
  }

  .page-hero-kicker {
    font-size: 0.7rem;
  }

  .page-hero-desc {
    font-size: 0.95rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 3.7rem);
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-link-btn {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-stats {
    gap: 0.7rem;
  }

  .hero-stat-number {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    white-space: normal;
  }

  .hero-stat-label {
    max-width: none;
  }

  .hero-logo-image {
    width: min(330px, 92%);
  }

  .hero-logo-fallback {
    width: min(220px, 64%);
  }

  .hero-badge {
    min-width: 132px;
    max-width: 150px;
    padding: 0.65rem 0.8rem;
  }

  .hero-badge strong {
    font-size: 0.72rem;
  }

  .hero-badge span {
    font-size: 0.64rem;
  }

}

/* ===== Content Pages (Visi Misi, Tujuan, dll) ===== */
.content-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-left: 4px solid var(--ark-teal);
}

.content-block h1,
.content-block h2 {
  color: var(--ark-navy);
  font-weight: 700;
}

.content-block ul {
  padding-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.company-profile-table th,
.company-profile-table td {
  font-size: clamp(0.88rem, 0.25vw + 0.82rem, 1.02rem);
  line-height: 1.65;
  vertical-align: top;
}

.preface-block .program-subtitle {
  margin-bottom: 0.85rem;
}

.preface-text {
  max-width: 980px;
}

.preface-text p {
  margin-bottom: 0.9rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  color: rgba(15, 23, 42, 0.88);
}

.permit-doc-list .list-group-item {
  border-color: rgba(15, 23, 42, 0.1);
  padding: clamp(0.72rem, 0.5vw + 0.62rem, 0.95rem) clamp(0.9rem, 0.6vw + 0.76rem, 1.15rem);
}

.permit-doc-list .list-group-item span {
  line-height: 1.45;
}

.ark-structure-image {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.company-profile-table th {
  width: clamp(140px, 17vw, 220px);
  font-weight: 700;
  white-space: normal;
}

.program-hero-block {
  background: linear-gradient(135deg, #173f9b 0%, #2b2a74 55%, #143a7b 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.program-hero-block .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.program-hero-block .page-title,
.program-hero-block p,
.program-hero-block li,
.program-hero-block h3 {
  color: #fff;
}

.program-hero-block .page-title span {
  color: #facc15;
}

.program-subtitle {
  color: var(--ark-navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.program-subtitle-light {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.program-list,
.requirements-list {
  margin: 0;
  padding-left: 1.3rem;
}

.program-list li,
.requirements-list li {
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.program-illus-grid {
  display: grid;
  gap: 0.9rem;
}

.program-illus-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.program-illus-thumb {
  width: 128px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: block;
}

.focus-illus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.focus-illus-list span {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  font-weight: 600;
  font-size: 0.92em;
}

.focus-illus-thumb {
  width: 72px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: block;
}

.program-section-illus {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.program-section-thumb {
  width: 96px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: block;
}

.program-section-illus.engineering {
  border-left: 4px solid #0d9488;
}

.program-section-illus.tokutei {
  border-left: 4px solid #2563eb;
}

.program-section-illus.magang {
  border-left: 4px solid #d97706;
}

.program-overview-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.program-overview-inline p {
  flex: 1;
  min-width: 0;
  line-height: 1.7;
}

.section-illustration-image {
  width: min(220px, 38vw);
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
  flex-shrink: 0;
}

.section-illustration-inline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.section-illustration-inline .requirements-list,
.section-illustration-inline .process-steps {
  flex: 1;
  min-width: 0;
}

.section-illustration-inline--process {
  align-items: stretch;
}

.staff-detail-wrap {
  position: relative;
}

.staff-detail-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.staff-detail-main {
  flex: 1;
  min-width: 280px;
}

.staff-detail-side {
  min-width: 200px;
}

.staff-meta-grid {
  display: grid;
  gap: 0.55rem;
}

.staff-meta-grid > div {
  display: grid;
  gap: 0.15rem;
  border-left: 3px solid rgba(8, 117, 51, 0.28);
  padding-left: 0.65rem;
}

.staff-meta-grid strong {
  font-size: 0.86rem;
  color: var(--ark-text-muted);
}

.staff-meta-grid span {
  color: var(--ark-navy);
  font-weight: 600;
  line-height: 1.45;
}

.staff-photo-image {
  width: 180px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.15);
  display: block;
}

.staff-qr-image {
  width: 180px;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.staff-register-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 1rem;
}

.staff-register-dialog {
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 1rem;
}

.admin-upload-thumb {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
}

.admin-upload-preview {
  width: min(320px, 100%);
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
}

.upload-progress-wrap .progress {
  height: 0.72rem;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.job-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ark-text);
  font-weight: 600;
}

.job-item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--ark-teal);
  flex-shrink: 0;
}

.highlight-strip {
  background: linear-gradient(135deg, #facc15 0%, #f7b500 100%);
  border-radius: 22px;
  padding: 1.25rem 1.5rem;
  color: #17324a;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(250, 204, 21, 0.18);
}

.highlight-strip strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.info-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.info-card h3 {
  color: var(--ark-navy);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.training-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.training-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.training-content {
  min-width: 0;
}

.training-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.training-tag {
  display: inline-flex;
  align-items: center;
  background: var(--ark-teal);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.training-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ark-navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.training-subtitle {
  color: var(--ark-navy);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.training-visual {
  min-height: 220px;
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.training-visual-teal {
  background: linear-gradient(135deg, #effcf7 0%, #d6f7ec 100%);
}

.training-visual-slate {
  background: linear-gradient(135deg, #f4f6fb 0%, #e6ecf8 100%);
}

.training-visual-gold {
  background: linear-gradient(135deg, #fff9e7 0%, #feefba 100%);
}

.training-visual-blue {
  background: linear-gradient(135deg, #eef4ff 0%, #dbe9ff 100%);
}

.training-visual-icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 63, 155, 0.1);
  color: var(--ark-navy);
  font-size: 2rem;
}

.training-visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.training-visual-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ark-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.training-overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(8, 117, 51, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fcfa 0%, #eff6f3 100%);
  border: 1px solid rgba(8, 117, 51, 0.08);
  border-radius: 32px;
  padding: 2.75rem;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
}

.training-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.training-overview-title {
  margin: 0;
  color: var(--ark-navy);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 800;
  max-width: 640px;
}

.training-overview-subtitle {
  margin: 1rem 0 0;
  color: rgba(23, 50, 74, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 500;
  max-width: 620px;
}

.training-hero-copy {
  min-width: 0;
}

.training-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.training-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 117, 51, 0.12);
  color: #06673c;
  font-size: 0.95rem;
  font-weight: 700;
}

.training-hero-panel {
  position: relative;
  flex: 0 0 min(360px, 100%);
  min-width: 280px;
}

.training-hero-dot {
  position: absolute;
  top: -18px;
  right: 18px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-image: radial-gradient(rgba(8, 117, 51, 0.82) 1.4px, transparent 1.4px);
  background-size: 8px 8px;
  opacity: 0.8;
}

.training-hero-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #06673c 0%, #0b7a48 100%);
  color: #fff;
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: 0 20px 34px rgba(8, 117, 51, 0.22);
}

.training-hero-card-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.training-hero-card strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.training-hero-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.training-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.training-summary-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
}

.training-summary-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(8, 117, 51, 0.1);
  color: #06673c;
  font-size: 1.45rem;
}

.training-summary-title {
  display: block;
  min-height: auto;
  margin: 0 0 1rem;
  padding: 0;
  background: transparent;
  color: var(--ark-navy);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.training-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.training-check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.85rem;
  color: #173f69;
  font-size: 1.05rem;
  line-height: 1.55;
}

.training-check-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: "bootstrap-icons";
  color: #06673c;
  font-size: 1rem;
}

.training-detail-section {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
}

.training-detail-icons {
  display: grid;
  gap: 0.5rem;
}

.training-detail-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ark-navy);
  color: #fff;
  font-size: 1.35rem;
}

.training-detail-text {
  color: var(--ark-text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.training-detail-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #06673c;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(8, 117, 51, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fcfa 0%, #eef6f2 100%);
  border: 1px solid rgba(8, 117, 51, 0.08);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
}

.program-showcase-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.program-showcase-copy {
  min-width: 0;
  max-width: 720px;
}

.program-showcase-copy .page-title {
  margin-bottom: 1rem;
}

.program-showcase-copy p {
  color: rgba(23, 50, 74, 0.82);
  line-height: 1.75;
}

.program-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.program-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 117, 51, 0.12);
  color: #06673c;
  font-size: 0.95rem;
  font-weight: 700;
}

.program-showcase-panel {
  flex: 0 0 min(360px, 100%);
  min-width: 280px;
  background: linear-gradient(135deg, #06673c 0%, #0b7a48 100%);
  color: #fff;
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: 0 20px 34px rgba(8, 117, 51, 0.2);
}

.program-showcase-panel-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-showcase-panel strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.program-showcase-panel p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 1rem;
}

.process-step-number {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--ark-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(8, 117, 51, 0.2);
}

.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #116530;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.document-note {
  color: rgba(15, 23, 42, 0.64);
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .program-hero-block {
    padding: 1.75rem;
    border-radius: 22px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .focus-illus-list {
    grid-template-columns: 1fr;
  }

  .program-illus-item {
    grid-template-columns: 88px 1fr;
  }

  .program-illus-thumb {
    width: 88px;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: none;
  }

  .focus-illus-list span {
    grid-template-columns: 52px 1fr;
  }

  .focus-illus-thumb {
    width: 52px;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .program-section-thumb {
    width: 72px;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .program-overview-inline {
    gap: 0.75rem;
  }

  .program-overview-inline p {
    line-height: 1.62;
  }

  .section-illustration-image {
    width: 120px;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .section-illustration-inline {
    gap: 0.75rem;
  }

  .staff-detail-side {
    width: 100%;
    text-align: left !important;
  }

  .staff-photo-image {
    width: 135px;
  }

  .staff-qr-image {
    width: 135px;
  }

  .training-card-body {
    grid-template-columns: 1fr;
  }

  .training-overview {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .training-hero {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.5rem;
  }

  .program-showcase {
    padding: 1.6rem;
    border-radius: 24px;
  }

  .program-showcase-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 1.4rem;
  }

  .program-showcase-panel {
    min-width: 0;
  }

  .training-summary-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .training-summary-title {
    font-size: 1.05rem;
  }

  .training-detail-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .training-detail-icons {
    grid-template-columns: repeat(3, 64px);
  }

  .training-hero-panel {
    min-width: 0;
  }

  .training-hero-dot {
    width: 58px;
    height: 58px;
    top: -10px;
    right: 12px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 0.8rem;
  }

  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .training-card {
    padding: 1.25rem;
  }

  .training-card-header {
    align-items: flex-start;
  }

  .training-tag {
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
  }

  .training-number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .training-visual {
    min-height: 180px;
    padding: 1.25rem;
  }

  .training-visual-icon {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
  }
}

/* ===== Partner logo ===== */
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--ark-border);
}

.partner-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 110px;
  margin: 0 auto;
  object-fit: contain;
}

/* ===== Floating Language Button ===== */
.lang-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
}

.lang-fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: var(--ark-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  padding: 0;
}

.lang-fab-btn::after {
  display: none;
}

.lang-fab-btn i {
  font-size: 1.25rem;
}

.lang-fab .dropdown-menu {
  min-width: 170px;
}

/* ===== Utility ===== */
.text-ark-teal {
  color: var(--ark-teal);
}

.text-ark-navy {
  color: var(--ark-navy);
}

.bg-ark-soft {
  background: var(--ark-teal-soft);
}

/* Home: section background alternating */
.home-section-light {
  background: #fff;
}

.home-section-light + .home-section-light {
  box-shadow: 0 -1px 0 var(--ark-border);
}

/* ===== Global responsive spacing system ===== */
:root {
  --space-page-y: clamp(1.25rem, 2.8vw, 4rem);
  --space-page-x: clamp(0.85rem, 2.3vw, 2rem);
  --space-card: clamp(0.9rem, 1.5vw, 1.6rem);
  --space-block: clamp(1rem, 2vw, 2.5rem);
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: var(--space-page-x);
}

.page-section {
  padding-top: var(--space-page-y);
  padding-bottom: var(--space-page-y);
}

.content-block,
.info-card,
.training-card,
.program-showcase,
.training-overview {
  padding: var(--space-block);
}

.card-ark .card-body,
.gallery-card .card-body,
.card .card-body {
  padding: var(--space-card);
}

.table-ark thead th,
.table-ark td,
table.table thead th,
table.table td {
  padding: clamp(0.55rem, 1.1vw, 1rem) clamp(0.55rem, 1.25vw, 1.25rem);
  font-size: clamp(0.86rem, 0.2vw + 0.82rem, 0.98rem);
}

.form-control,
.form-select,
textarea.form-control {
  padding: clamp(0.5rem, 0.8vw, 0.72rem) clamp(0.65rem, 1vw, 0.95rem);
  font-size: clamp(0.9rem, 0.18vw + 0.86rem, 1rem);
}

.btn,
.btn-ark {
  padding-top: clamp(0.45rem, 0.8vw, 0.72rem);
  padding-bottom: clamp(0.45rem, 0.8vw, 0.72rem);
  padding-left: clamp(0.8rem, 1.4vw, 1.35rem);
  padding-right: clamp(0.8rem, 1.4vw, 1.35rem);
  font-size: clamp(0.86rem, 0.2vw + 0.82rem, 0.98rem);
}

.hero-section,
.page-hero,
.footer-ark {
  padding-left: var(--space-page-x);
  padding-right: var(--space-page-x);
}

@media (max-width: 767.98px) {
  .company-profile-table,
  .company-profile-table tbody,
  .company-profile-table tr,
  .company-profile-table th,
  .company-profile-table td {
    display: block;
    width: 100% !important;
  }

  .company-profile-table tr {
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
  }

  .company-profile-table tr:last-child {
    border-bottom: none;
  }

  .company-profile-table th {
    margin-bottom: 0.25rem;
    color: var(--ark-navy);
    font-size: clamp(0.86rem, 0.22vw + 0.82rem, 0.95rem);
  }

  .company-profile-table td {
    font-size: clamp(0.9rem, 0.3vw + 0.84rem, 1rem);
  }

  .preface-text p {
    text-align: left;
    line-height: 1.78;
  }

  .permit-doc-list .list-group-item {
    padding-inline: 0.85rem;
  }
}

/* ===== Global square style (no border radius) ===== */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

.rounded,
.rounded-0,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5,
.rounded-top,
.rounded-end,
.rounded-bottom,
.rounded-start,
.rounded-circle,
.rounded-pill {
  border-radius: 0 !important;
}

/* ===== Allowed rounded elements ===== */
.lang-fab-btn {
  border-radius: 999px !important;
}

.lang-fab .dropdown-menu {
  border-radius: 12px !important;
}

.footer-social-icon {
  border-radius: 10px !important;
}

.footer-contact-icon {
  border-radius: 999px !important;
}

.footer-qr-box {
  border-radius: 12px !important;
}

.qr-code-image {
  border-radius: 6px !important;
}
