/* ====== VARIABLE & GLOBAL ====== */

:root {
--primary: #f15a29;
--primary-dark: #c7471f;
--accent: #37424a;
--bg: #f8fafc;
--text: #111827;
--muted: #6b7280;
--border: #e5e7eb;
--white: #ffffff;

--radius-lg: 18px;
--radius-md: 12px;

/* shadow sedikit diperkecil */
--shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
--shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
}

body {
font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
color: var(--text);
min-height: 100vh;

/* background tetap, ini tidak terlalu berat */
background:
radial-gradient(circle at 0% 0%, rgba(241, 90, 41, 0.09) 0, transparent 52%),
radial-gradient(circle at 100% 10%, rgba(55, 66, 74, 0.10) 0, transparent 55%),
radial-gradient(circle at 50% 100%, rgba(241, 90, 41, 0.06) 0, transparent 60%),
#f8fafc;
}

/* ====== UTILITIES ====== */

.container {
width: min(1120px, 100% - 3rem);
margin-inline: auto;
}

.section {
padding: 80px 0;
}

.eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 11px;
font-weight: 600;
color: var(--primary);
margin-bottom: 6px;
}

h1,
h2,
h3 {
margin: 0 0 12px;
}

h1 {
font-size: clamp(32px, 4vw, 40px);
font-weight: 700;
}

h2 {
font-size: clamp(24px, 3vw, 30px);
font-weight: 700;
}

p {
margin: 0 0 10px;
color: var(--muted);
line-height: 1.7;
}

.section-subtitle {
color: var(--muted);
margin-bottom: 24px;
font-size: 14px;
}

/* ====== BUTTONS ====== */

.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 9px 20px;
border-radius: 999px;
border: none;
text-decoration: none;
font-size: 14px;
font-weight: 600;
cursor: pointer;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.btn-ghost {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 9px 18px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.6);
text-decoration: none;
font-size: 14px;
font-weight: 500;
cursor: pointer;
background: #ffffff;
color: var(--text);
transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-ghost:hover {
border-color: rgba(148, 163, 184, 1);
transform: translateY(-1px);
}

/* ====== HEADER & NAVBAR ====== */

.site-header {
position: sticky;
top: 0;
z-index: 100;
background:
linear-gradient(to right, rgba(241, 90, 41, 0.10), transparent 42%),
rgba(243, 244, 246, 0.96);
/* blur dikurangi */
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(148, 163, 184, 0.7);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding-block: 10px;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.logo-mark {
width: 40px;
height: 40px;
object-fit: contain;
}

.logo-text {
display: flex;
flex-direction: column;
line-height: 1.1;
}

.logo-main {
font-weight: 800;
font-size: 16px;
letter-spacing: 0.06em;
color: var(--accent);
}

.logo-sub {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.16em;
color: #9ca3af;
}

.nav {
display: flex;
align-items: center;
gap: 18px;
}

.nav-link {
background: none;
border: none;
padding: 6px 0;
font: 500 14px "Poppins", system-ui, sans-serif;
color: #4b5563;
cursor: pointer;
text-decoration: none;
position: relative;
}

.nav-link.active {
color: #111827;
}

.nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height: 2px;
border-radius: 999px;
background: var(--primary);
transition: width 0.16s ease;
}

.nav-link:hover::after {
width: 100%;
}

/* ====== NAV SERVICES + MEGA MENU (DESKTOP) ====== */

.nav-services {
position: relative;
}

.nav-services-toggle {
display: inline-flex;
align-items: center;
gap: 4px;
}

.nav-caret {
font-size: 10px;
transition: transform 0.18s ease;
}

.services-panel {
position: absolute;
left: 50%;
top: 120%;
transform: translateX(-50%) translateY(8px) scale(0.98);
transform-origin: top center;
width: 100vw;
max-width: 1120px;
background: #ffffff;
border-radius: 20px;
box-shadow: var(--shadow-soft);
padding: 22px 0 24px;
opacity: 0;
visibility: hidden;
transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
z-index: 60;
}

.services-panel-inner {
display: grid;
grid-template-columns: 1.1fr 2fr;
gap: 24px;
}

.services-main {
display: flex;
flex-direction: column;
gap: 8px;
padding-right: 12px;
border-right: 1px solid rgba(148, 163, 184, 0.35);
}

.services-main-item {
display: block;
width: 100%;
text-align: left;
padding: 9px 10px;
border-radius: 10px;
border: 0;
background: transparent;
font: 500 13px "Poppins", system-ui, sans-serif;
color: #4b5563;
cursor: pointer;
text-decoration: none;
transition: background 0.15s ease, color 0.15s ease;
}

.services-main-item:hover {
background: rgba(241, 90, 41, 0.06);
color: var(--primary-dark);
}

.services-main-item.is-active {
background: rgba(241, 90, 41, 0.12);
color: var(--primary-dark);
}

.services-detail {
display: none;
}

.services-detail.is-active {
display: block;
}

.services-eyebrow {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 11px;
color: #9ca3af;
margin-bottom: 4px;
}

.services-list {
list-style: none;
padding: 0;
margin: 0 0 10px;
font-size: 13px;
color: #4b5563;
}

.services-list li {
margin-bottom: 4px;
}

/* Backdrop */

.nav-backdrop {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.18);
backdrop-filter: blur(8px);
opacity: 0;
visibility: hidden;
transition: opacity 0.18s ease, visibility 0.18s ease;
z-index: 40;
}

.nav-services.open .services-panel,
.nav-services:hover .services-panel {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0) scale(1);
}

.nav-services.open .nav-caret,
.nav-services:hover .nav-caret {
transform: rotate(180deg);
}

.site-header .nav-services.open ~ .nav-backdrop,
.site-header .nav-services:hover ~ .nav-backdrop {
opacity: 1;
visibility: visible;
}

/* ====== HERO ====== */

.hero {
  padding: 72px 0 64px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;          /* lebih besar */
  font-weight: 700;
  color: #000000;           /* hitam */
  margin-bottom: 10px;
}

/* Judul */
.hero-text h1 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(36px, 4.5vw, 44px); /* NAIK SIGNIFIKAN */
  font-weight: 800;
  margin-bottom: 14px;
  color: #000000;           /* hitam pekat */
  line-height: 1.25;
}

/* Deskripsi */
.hero-sub {
  font-size: 18px;          /* sedikit naik */
  max-width: 600px;
  color: #1f2937;           /* abu gelap, bukan muted */
  line-height: 1.8;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.hero-link {
  font-size: 13px;
  color: #6b7280;
}

/* Visual */
.hero-visual {
  position: relative;
  height: 260px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--accent), #0b6fff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ====== INTRO SECTION ====== */

.intro {
background: rgba(255, 255, 255, 0.9);
}

.intro-inner {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: 40px;
align-items: center;
}

.intro-highlight {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}

.intro-stat {
padding: 12px 10px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
text-align: center;
}

.stat-number {
display: block;
font-weight: 700;
font-size: 18px;
color: var(--primary-dark);
}

.stat-label {
display: block;
font-size: 11px;
color: #6b7280;
margin-top: 3px;
}

/* ====== INTRO TIMELINE ====== */

.intro-timeline {
margin-top: 8px;
display: flex;
flex-direction: column;
gap: 10px;
position: relative;
padding-left: 14px;
}

.intro-timeline::before {
content: "";
position: absolute;
left: 4px;
top: 4px;
bottom: 4px;
width: 2px;
border-radius: 999px;
background: linear-gradient(
to bottom,
rgba(241, 90, 41, 0.4),
rgba(148, 163, 184, 0.2)
);
}

.timeline-item {
display: flex;
align-items: flex-start;
gap: 10px;
}

.timeline-dot {
flex: 0 0 auto;
width: 12px;
height: 12px;
border-radius: 999px;
border: 2px solid var(--primary);
background: #fff7ed;
box-shadow: 0 0 0 4px rgba(241, 90, 41, 0.18);
margin-top: 6px;
}

.timeline-card {
flex: 1 1 auto;
padding: 10px 12px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.timeline-year {
display: inline-block;
font-weight: 600;
font-size: 12px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--primary-dark);
margin-bottom: 4px;
}

.timeline-text {
margin: 0;
font-size: 12px;
color: var(--muted);
line-height: 1.6;
}

.timeline-card:hover {
box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
transform: translateY(-2px);
border-color: rgba(241, 90, 41, 0.65);
}

.intro-timeline[data-animate] {
opacity: 0;
transform: translateY(8px);
transition: opacity 0.28s ease, transform 0.28s ease;
}

.intro-timeline.is-visible {
opacity: 1;
transform: translateY(0);
}

/* Galeri intro */

.intro-gallery-slider {
margin-top: 18px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
padding: 10px 10px 12px;
}

.intro-gallery-track {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: 10px;
}

.intro-gallery-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: translateX(12px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-gallery-slide.is-active {
opacity: 1;
transform: translateX(0);
z-index: 1;
}

.intro-gallery-slide img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.intro-gallery-dots {
display: flex;
justify-content: center;
gap: 6px;
margin-top: 8px;
}

.intro-gallery-dot {
width: 6px;
height: 6px;
border-radius: 999px;
border: none;
background: #d1d5db;
cursor: pointer;
transition: background 0.18s ease, width 0.18s ease, transform 0.18s ease;
}

.intro-gallery-dot.is-active {
width: 16px;
background: var(--primary);
transform: translateY(-1px);
}

/* ====== TABLE OF CONTENT ====== */

.toc {
background: rgba(249, 250, 251, 0.96);
}

.toc-grid {
margin-top: 22px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
}

.toc-item {
display: flex;
flex-direction: column;
gap: 6px;
padding: 14px 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
text-decoration: none;
background: linear-gradient(135deg, #ffffff, #fff7ed);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.toc-item:hover {
transform: translateY(-2px);
box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
border-color: rgba(241, 90, 41, 0.9);
}

.toc-label {
font-size: 14px;
font-weight: 600;
color: var(--text);
}

.toc-desc {
font-size: 12px;
color: #6b7280;
}

/* ====== FOOTER ====== */

.site-footer {
padding: 18px 0 22px;
background: #0f172a;
color: #e5e7eb;
}

.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 960px) {
.header-inner {
gap: 10px;
}

.hero-inner,
.intro-inner {
grid-template-columns: minmax(0, 1fr);
}

.hero-visual {
order: -1;
height: 220px;
}
}

@media (max-width: 768px) {
body {
font-size: 15px;
}

.header-inner {
padding-block: 8px;
}

.nav {
gap: 12px;
}

.nav-link {
font-size: 13px;
}

.btn-primary {
padding: 8px 16px;
font-size: 13px;
}

.hero {
padding: 56px 0 40px;
}

.intro,
.section {
padding: 56px 0;
}
}

@media (max-width: 600px) {
.container {
width: min(480px, 100% - 2.4rem);
}

.logo-mark {
width: 32px;
height: 32px;
}

.logo-main {
font-size: 14px;
}

.hero {
padding: 48px 0 40px;
text-align: center;
}

.hero-inner {
grid-template-columns: minmax(0, 1fr);
gap: 24px;
}

.hero-visual {
order: 2;
width: 100%;
max-width: 380px;
margin-inline: auto;
height: 220px;
}

.hero-text {
order: 1;
}

.hero-eyebrow {
font-size: 12px;
letter-spacing: 0.22em;
}

.hero-text h1 {
font-size: 24px;
letter-spacing: 0.04em;
}

.hero-sub {
font-size: 14px;
max-width: 100%;
}

.hero-actions {
flex-direction: column;
align-items: stretch;
margin-top: 20px;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
width: 100%;
justify-content: center;
}

.hero-link {
margin-top: 8px;
}

.intro {
padding: 48px 0;
}

.intro-inner {
grid-template-columns: minmax(0, 1fr);
text-align: center;
gap: 24px;
}

.intro-highlight {
grid-template-columns: 1fr;
gap: 12px;
}

.intro-gallery-track {
aspect-ratio: 16 / 10;
}

.toc {
padding: 48px 0 56px;
}

.toc-grid {
grid-template-columns: 1fr;
gap: 12px;
}

.toc-item {
padding: 12px 14px 14px;
}

.footer-inner {
flex-direction: column;
gap: 4px;
text-align: center;
}

.intro-timeline {
padding-left: 10px;
}

.timeline-card {
padding: 9px 10px;
}

.timeline-text {
font-size: 12px;
}
}

/* Responsive panel Services di mobile */

@media (max-width: 640px) {
.services-panel-inner {
grid-template-columns: 1fr;
gap: 18px;
}

.services-main {
flex-direction: row;
overflow-x: auto;
border-right: 0;
border-bottom: 1px solid rgba(148, 163, 184, 0.35);
padding-bottom: 8px;
}

.services-main-item {
white-space: nowrap;
flex: 0 0 auto;
}
}

/* ====== HAMBURGER NAV (MOBILE) ====== */

@media (max-width: 768px) {
.header-inner {
position: relative;
z-index: 110;
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 26px;
    letter-spacing: 0.05em;
  }

  .hero-sub {
    font-size: 14px;
    color: #111827;
  }
}


.nav-toggle {
display: inline-flex;
flex-direction: column;
justify-content: center;
gap: 4px;
width: 32px;
height: 32px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.7);
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
cursor: pointer;
padding: 0;
transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
position: relative;
z-index: 120;
}

.nav-toggle:hover {
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
transform: translateY(-1px);
}

.nav-toggle-line {
display: block;
width: 16px;
height: 2px;
margin-inline: auto;
border-radius: 999px;
background: #111827;
transition: transform 0.22s ease, opacity 0.18s ease, width 0.18s ease;
transform-origin: center;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
transform: translateY(3px) rotate(45deg);
width: 18px;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
transform: translateY(-3px) rotate(-45deg);
width: 18px;
}

.nav-menu {
position: absolute;
inset-inline: 0;
top: 56px;
padding: 12px 16px 16px;
background: rgba(248, 250, 252, 0.96);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(226, 232, 240, 0.9);
display: flex;
flex-direction: column;
gap: 10px;
transform: translateY(-10px);
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
transition: transform 0.24s ease, opacity 0.24s ease, max-height 0.3s ease;
z-index: 110;
}

.nav-menu .nav-link,
.nav-menu .btn-primary {
width: 100%;
text-align: left;
}

.nav-menu.is-open {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
max-height: 320px;
}
}

@media (min-width: 769px) {
.nav-toggle {
display: none;
}
}

/* ====== SERVICES: desktop vs mobile ====== */

.nav-services-mobile-only {
display: none;
}

.nav-services {
display: block;
}

@media (max-width: 768px) {
.nav-services-mobile-only {
display: block;
}

.nav-services {
display: none;
}
}

/* ====== VARIABLE & GLOBAL ====== */

:root {
--primary: #f15a29;
--primary-dark: #c7471f;
--accent: #37424a;
--bg: #f8fafc;
--text: #111827;
--muted: #6b7280;
--border: #e5e7eb;
--white: #ffffff;

--radius-lg: 18px;
--radius-md: 12px;

/* shadow sedikit diperkecil */
--shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
--shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
}

body {
font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
color: var(--text);
min-height: 100vh;

/* background tetap, ini tidak terlalu berat */
background:
radial-gradient(circle at 0% 0%, rgba(241, 90, 41, 0.09) 0, transparent 52%),
radial-gradient(circle at 100% 10%, rgba(55, 66, 74, 0.10) 0, transparent 55%),
radial-gradient(circle at 50% 100%, rgba(241, 90, 41, 0.06) 0, transparent 60%),
#f8fafc;
}

/* ====== UTILITIES ====== */

.container {
width: min(1120px, 100% - 3rem);
margin-inline: auto;
}

.section {
padding: 80px 0;
}

.eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 11px;
font-weight: 600;
color: var(--primary);
margin-bottom: 6px;
}

h1,
h2,
h3 {
margin: 0 0 12px;
}

h1 {
font-size: clamp(32px, 4vw, 40px);
font-weight: 700;
}

h2 {
font-size: clamp(24px, 3vw, 30px);
font-weight: 700;
}

p {
margin: 0 0 10px;
color: var(--muted);
line-height: 1.7;
}

.section-subtitle {
color: var(--muted);
margin-bottom: 24px;
font-size: 14px;
}

/* ====== BUTTONS ====== */

.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 9px 20px;
border-radius: 999px;
border: none;
text-decoration: none;
font-size: 14px;
font-weight: 600;
cursor: pointer;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.btn-ghost {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 9px 18px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.6);
text-decoration: none;
font-size: 14px;
font-weight: 500;
cursor: pointer;
background: #ffffff;
color: var(--text);
transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-ghost:hover {
border-color: rgba(148, 163, 184, 1);
transform: translateY(-1px);
}

/* ====== HEADER & NAVBAR ====== */

.site-header {
position: sticky;
top: 0;
z-index: 100;
background:
linear-gradient(to right, rgba(241, 90, 41, 0.10), transparent 42%),
rgba(243, 244, 246, 0.96);
/* blur dikurangi */
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(148, 163, 184, 0.7);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding-block: 10px;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.logo-mark {
width: 40px;
height: 40px;
object-fit: contain;
}

.logo-text {
display: flex;
flex-direction: column;
line-height: 1.1;
}

.logo-main {
font-weight: 800;
font-size: 16px;
letter-spacing: 0.06em;
color: var(--accent);
}

.logo-sub {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.16em;
color: #9ca3af;
}

.nav {
display: flex;
align-items: center;
gap: 18px;
}

.nav-link {
background: none;
border: none;
padding: 6px 0;
font: 500 14px "Poppins", system-ui, sans-serif;
color: #4b5563;
cursor: pointer;
text-decoration: none;
position: relative;
}

.nav-link.active {
color: #111827;
}

.nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height: 2px;
border-radius: 999px;
background: var(--primary);
transition: width 0.16s ease;
}

.nav-link:hover::after {
width: 100%;
}

.nav-services-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-services-link {
  padding: 10px 6px;
}

.nav-services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
}

.nav-caret {
  font-size: 12px;
}

/* ====== NAV SERVICES + MEGA MENU (DESKTOP) ====== */

.nav-services {
position: relative;
}

.nav-services-toggle {
display: inline-flex;
align-items: center;
gap: 4px;
}

.nav-caret {
font-size: 10px;
transition: transform 0.18s ease;
}

.services-panel {
position: absolute;
left: 50%;
top: 120%;
transform: translateX(-50%) translateY(8px) scale(0.98);
transform-origin: top center;
width: 100vw;
max-width: 1120px;
background: #ffffff;
border-radius: 20px;
box-shadow: var(--shadow-soft);
padding: 22px 0 24px;
opacity: 0;
visibility: hidden;
transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
z-index: 60;
}

.services-panel-inner {
display: grid;
grid-template-columns: 1.1fr 2fr;
gap: 24px;
}

.services-main {
display: flex;
flex-direction: column;
gap: 8px;
padding-right: 12px;
border-right: 1px solid rgba(148, 163, 184, 0.35);
}

.services-main-item {
display: block;
width: 100%;
text-align: left;
padding: 9px 10px;
border-radius: 10px;
border: 0;
background: transparent;
font: 500 13px "Poppins", system-ui, sans-serif;
color: #4b5563;
cursor: pointer;
text-decoration: none;
transition: background 0.15s ease, color 0.15s ease;
}

.services-main-item:hover {
background: rgba(241, 90, 41, 0.06);
color: var(--primary-dark);
}

.services-main-item.is-active {
background: rgba(241, 90, 41, 0.12);
color: var(--primary-dark);
}

.services-detail {
display: none;
}

.services-detail.is-active {
display: block;
}

.services-eyebrow {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 11px;
color: #9ca3af;
margin-bottom: 4px;
}

.services-list {
list-style: none;
padding: 0;
margin: 0 0 10px;
font-size: 13px;
color: #4b5563;
}

.services-list li {
margin-bottom: 4px;
}

/* Backdrop */

.nav-backdrop {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.18);
backdrop-filter: blur(8px);
opacity: 0;
visibility: hidden;
transition: opacity 0.18s ease, visibility 0.18s ease;
z-index: 40;
}

.nav-services.open .services-panel,
.nav-services:hover .services-panel {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0) scale(1);
}

.nav-services.open .nav-caret,
.nav-services:hover .nav-caret {
transform: rotate(180deg);
}

.site-header .nav-services.open ~ .nav-backdrop,
.site-header .nav-services:hover ~ .nav-backdrop {
opacity: 1;
visibility: visible;
}

/* ====== HERO ====== */

.hero {
padding: 72px 0 64px;
background: transparent;
position: relative;
overflow: hidden;
}

.hero-inner {
position: relative;
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: 40px;
align-items: center;
}

.hero-eyebrow {
text-transform: uppercase;
letter-spacing: 0.24em;
font-size: 11px;
font-weight: 600;
color: var(--primary);
margin-bottom: 10px;
}

.hero-text h1 {
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: clamp(26px, 3vw, 30px);
margin-bottom: 12px;
}

.hero-sub {
font-size: 14px;
max-width: 480px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px 0 16px;
}

.hero-link {
font-size: 13px;
color: #9ca3af;
}

.hero-visual {
position: relative;
height: 260px;
border-radius: 32px;
background: linear-gradient(135deg, var(--accent), #0b6fff);
box-shadow: var(--shadow-soft);
overflow: hidden;
}

.hero-photo {
width: 100%;
height: 100%;
object-fit: cover;
}

/* badge: blur dikurangi */
.hero-badge {
position: absolute;
top: 16px;
left: 18px;
padding: 10px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(6px);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
display: flex;
flex-direction: column;
gap: 2px;
}

.badge-title {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--primary);
}

.badge-sub {
font-size: 12px;
color: #4b5563;
}

/* ====== INTRO SECTION ====== */

.intro {
background: rgba(255, 255, 255, 0.9);
}

.intro-inner {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: 40px;
align-items: center;
}

.intro-highlight {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}

.intro-stat {
padding: 12px 10px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
text-align: center;
}

.stat-number {
display: block;
font-weight: 700;
font-size: 18px;
color: var(--primary-dark);
}

.stat-label {
display: block;
font-size: 11px;
color: #6b7280;
margin-top: 3px;
}

/* ====== INTRO TIMELINE ====== */

.intro-timeline {
margin-top: 8px;
display: flex;
flex-direction: column;
gap: 10px;
position: relative;
padding-left: 14px;
}

.intro-timeline::before {
content: "";
position: absolute;
left: 4px;
top: 4px;
bottom: 4px;
width: 2px;
border-radius: 999px;
background: linear-gradient(
to bottom,
rgba(241, 90, 41, 0.4),
rgba(148, 163, 184, 0.2)
);
}

.timeline-item {
display: flex;
align-items: flex-start;
gap: 10px;
}

.timeline-dot {
flex: 0 0 auto;
width: 12px;
height: 12px;
border-radius: 999px;
border: 2px solid var(--primary);
background: #fff7ed;
box-shadow: 0 0 0 4px rgba(241, 90, 41, 0.18);
margin-top: 6px;
}

.timeline-card {
flex: 1 1 auto;
padding: 10px 12px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.timeline-year {
display: inline-block;
font-weight: 600;
font-size: 12px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--primary-dark);
margin-bottom: 4px;
}

.timeline-text {
margin: 0;
font-size: 12px;
color: var(--muted);
line-height: 1.6;
}

.timeline-card:hover {
box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
transform: translateY(-2px);
border-color: rgba(241, 90, 41, 0.65);
}

.intro-timeline[data-animate] {
opacity: 0;
transform: translateY(8px);
transition: opacity 0.28s ease, transform 0.28s ease;
}

.intro-timeline.is-visible {
opacity: 1;
transform: translateY(0);
}

/* Galeri intro */

.intro-gallery-slider {
margin-top: 18px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 55%, #ffffff 100%);
box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
padding: 10px 10px 12px;
}

.intro-gallery-track {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: 10px;
}

.intro-gallery-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: translateX(12px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-gallery-slide.is-active {
opacity: 1;
transform: translateX(0);
z-index: 1;
}

.intro-gallery-slide img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.intro-gallery-dots {
display: flex;
justify-content: center;
gap: 6px;
margin-top: 8px;
}

.intro-gallery-dot {
width: 6px;
height: 6px;
border-radius: 999px;
border: none;
background: #d1d5db;
cursor: pointer;
transition: background 0.18s ease, width 0.18s ease, transform 0.18s ease;
}

.intro-gallery-dot.is-active {
width: 16px;
background: var(--primary);
transform: translateY(-1px);
}

/* ====== TABLE OF CONTENT ====== */

.toc {
background: rgba(249, 250, 251, 0.96);
}

.toc-grid {
margin-top: 22px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
}

.toc-item {
display: flex;
flex-direction: column;
gap: 6px;
padding: 14px 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
text-decoration: none;
background: linear-gradient(135deg, #ffffff, #fff7ed);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.toc-item:hover {
transform: translateY(-2px);
box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
border-color: rgba(241, 90, 41, 0.9);
}

.toc-label {
font-size: 14px;
font-weight: 600;
color: var(--text);
}

.toc-desc {
font-size: 12px;
color: #6b7280;
}

/* ====== FOOTER ====== */

.site-footer {
padding: 18px 0 22px;
background: #0f172a;
color: #e5e7eb;
}

.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 960px) {
.header-inner {
gap: 10px;
}

.hero-inner,
.intro-inner {
grid-template-columns: minmax(0, 1fr);
}

.hero-visual {
order: -1;
height: 220px;
}
}

@media (max-width: 768px) {
body {
font-size: 15px;
}

.header-inner {
padding-block: 8px;
}

.nav {
gap: 12px;
}

.nav-link {
font-size: 13px;
}

.btn-primary {
padding: 8px 16px;
font-size: 13px;
}

.hero {
padding: 56px 0 40px;
}

.intro,
.section {
padding: 56px 0;
}
}

@media (max-width: 600px) {
.container {
width: min(480px, 100% - 2.4rem);
}

.logo-mark {
width: 32px;
height: 32px;
}

.logo-main {
font-size: 14px;
}

.hero {
padding: 48px 0 40px;
text-align: center;
}

.hero-inner {
grid-template-columns: minmax(0, 1fr);
gap: 24px;
}

.hero-visual {
order: 2;
width: 100%;
max-width: 380px;
margin-inline: auto;
height: 220px;
}

.hero-text {
order: 1;
}

.hero-eyebrow {
font-size: 12px;
letter-spacing: 0.22em;
}

.hero-text h1 {
font-size: 24px;
letter-spacing: 0.04em;
}

.hero-sub {
font-size: 14px;
max-width: 100%;
}

.hero-actions {
flex-direction: column;
align-items: stretch;
margin-top: 20px;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
width: 100%;
justify-content: center;
}

.hero-link {
margin-top: 8px;
}

.intro {
padding: 48px 0;
}

.intro-inner {
grid-template-columns: minmax(0, 1fr);
text-align: center;
gap: 24px;
}

.intro-highlight {
grid-template-columns: 1fr;
gap: 12px;
}

.intro-gallery-track {
aspect-ratio: 16 / 10;
}

.toc {
padding: 48px 0 56px;
}

.toc-grid {
grid-template-columns: 1fr;
gap: 12px;
}

.toc-item {
padding: 12px 14px 14px;
}

.footer-inner {
flex-direction: column;
gap: 4px;
text-align: center;
}

.intro-timeline {
padding-left: 10px;
}

.timeline-card {
padding: 9px 10px;
}

.timeline-text {
font-size: 12px;
}
}

/* Responsive panel Services di mobile */

@media (max-width: 640px) {
.services-panel-inner {
grid-template-columns: 1fr;
gap: 18px;
}

.services-main {
flex-direction: row;
overflow-x: auto;
border-right: 0;
border-bottom: 1px solid rgba(148, 163, 184, 0.35);
padding-bottom: 8px;
}

.services-main-item {
white-space: nowrap;
flex: 0 0 auto;
}
}

/* ====== HAMBURGER NAV (MOBILE) ====== */

@media (max-width: 768px) {
.header-inner {
position: relative;
z-index: 110;
}

.nav-toggle {
display: inline-flex;
flex-direction: column;
justify-content: center;
gap: 4px;
width: 32px;
height: 32px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.7);
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
cursor: pointer;
padding: 0;
transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
position: relative;
z-index: 120;
}

.nav-toggle:hover {
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
transform: translateY(-1px);
}

.nav-toggle-line {
display: block;
width: 16px;
height: 2px;
margin-inline: auto;
border-radius: 999px;
background: #111827;
transition: transform 0.22s ease, opacity 0.18s ease, width 0.18s ease;
transform-origin: center;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
transform: translateY(3px) rotate(45deg);
width: 18px;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
transform: translateY(-3px) rotate(-45deg);
width: 18px;
}

.nav-menu {
position: absolute;
inset-inline: 0;
top: 56px;
padding: 12px 16px 16px;
background: rgba(248, 250, 252, 0.96);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(226, 232, 240, 0.9);
display: flex;
flex-direction: column;
gap: 10px;
transform: translateY(-10px);
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
transition: transform 0.24s ease, opacity 0.24s ease, max-height 0.3s ease;
z-index: 110;
}

.nav-menu .nav-link,
.nav-menu .btn-primary {
width: 100%;
text-align: left;
}

.nav-menu.is-open {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
max-height: 320px;
}
}

@media (min-width: 769px) {
.nav-toggle {
display: none;
}
}

/* ====== SERVICES: desktop vs mobile ====== */

.nav-services-mobile-only {
display: none;
}

.nav-services {
display: block;
}

@media (max-width: 768px) {
.nav-services-mobile-only {
display: block;
}

.nav-services {
display: none;
}
}

/* ====== FLOATING WHATSAPP BUTTON ====== */

.btn-wa-floating {
  position: fixed;
  right: 24px;          /* jarak dari kanan, bisa ubah 20–28px */
  bottom: 24px;         /* jarak dari bawah, bisa ubah 20–28px */
  z-index: 120;         /* di atas konten lain */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #25d366;  /* warna WhatsApp */
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.35);
  gap: 6px;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn-wa-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  background: #1ebe5b;
}

/* opsional: kecilkan di layar kecil supaya tidak ganggu */
@media (max-width: 600px) {
  .btn-wa-floating {
    right: 16px;
    bottom: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ===== FLOWCHART HORIZONTAL ===== */
.flowchart-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; /* supaya responsive di mobile */
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: radial-gradient(circle at top left, #fff7ed 0%, #f9fafb 55%, #ffffff 100%);
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  width: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.step-content h3 {
  margin: 0 0 6px;
  font-size: 14px;
  text-align: center;
  color: var(--primary-dark);
}

.step-content p {
  margin: 0;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  line-height: 1.4;
}

.flow-arrow {
  font-size: 24px;
  color: var(--primary);
  align-self: center;
  margin-top: 36px; /* supaya sejajar dengan step-number */
}

.why-us {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.why-us .section-title {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.why-us-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--primary-dark);
}

.card-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* ===== INTRO GALLERY ARROWS ===== */

.intro-gallery-slider {
  position: relative;
}

.intro-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.25s ease, transform 0.2s ease;
}

.intro-gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.05);
}

.intro-gallery-arrow.prev {
  left: 14px;
}

.intro-gallery-arrow.next {
  right: 14px;
}

/* Mobile lebih kecil */
@media (max-width: 600px) {
  .intro-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
