/* ============================================================
   Wahana Totalita Konsultan — style.css
   Palette: Forest Green #0A4A2E + Burnt Orange #C6621C
   Font: Plus Jakarta Sans
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --green:       #0A4A2E;
  --green-dark:  #062E1C;
  --green-mid:   #0D5C38;
  --green-light: #E8F4EE;
  --orange:      #C6621C;
  --orange-dark: #A04D12;
  --orange-light:#FEF3EC;
  --text:        #1a1a1a;
  --text-muted:  #666;
  --text-light:  #999;
  --border:      #e8e8e8;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-sm:   8px;
  --container:   1200px;
  --nav-h:       68px;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width:768px) { .container { padding: 0 16px; } }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 13px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 600; border: 2px solid var(--orange);
  transition: background .2s, transform .1s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 4px 14px rgba(198,98,28,.3); }
.btn-primary:active { transform: scale(.98); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  padding: 11px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 600; border: 2px solid var(--green);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  padding: 11px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 600; border: 2px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.2); }

.btn-outline-small {
  display: block; text-align: center;
  padding: 9px 16px; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: 13px; color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.btn-outline-small:hover { border-color: var(--green); color: var(--green); }

/* ─── NAVBAR ────────────────────────────────────────────────── */
/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: transparent;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
  border-bottom-color: #e8e8e8;
}
.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: width .6s ease;
}
.navbar.scrolled::after { width: 100%; }

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: var(--nav-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 15px; flex-shrink: 0;
  transition: color .3s;
}
.navbar.scrolled .nav-logo { color: var(--green); }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 12px; font-weight: 800;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(198,98,28,.4);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 16px; border-radius: 6px; font-size: 14px;
  font-weight: 500; color: rgba(255,255,255,.88);
  transition: color .2s, background .2s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: var(--green-light); color: var(--green) !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-socials { display: flex; gap: 8px; }
.nav-socials a {
  width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.navbar.scrolled .nav-socials a { color: var(--text-muted); }
.nav-socials a:hover { color: var(--orange) !important; }
.nav-socials svg { width: 16px; height: 16px; }

.btn-wa-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  transition: background .2s, box-shadow .2s, transform .1s;
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
}
.btn-wa-nav:hover { background: #1da855; box-shadow: 0 4px 16px rgba(37,211,102,.4); transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--text); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; padding: 10px 16px; border-radius: 8px; }
  .nav-hamburger { display: flex; }
  .nav-socials { display: none; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle hex grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Diagonal accent slash */
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: 38%;
  width: 1px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 40%, transparent);
  transform: rotate(12deg);
  pointer-events: none;
}

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; right: -60px; top: -120px;
  background: radial-gradient(circle, rgba(198,98,28,.18) 0%, transparent 65%);
}
.hero-orb-2 {
  width: 400px; height: 400px; left: -100px; bottom: -80px;
  background: radial-gradient(circle, rgba(10,74,46,.6) 0%, transparent 70%);
}

/* Bottom gradient fade */
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(6,46,28,.5));
  pointer-events: none;
}

.hero-inner {
  padding: 80px 0 60px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content { max-width: 100%; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.25);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-title em {
  color: #4ade80; font-style: normal;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #4ade80, transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75;
  margin-bottom: 30px; max-width: 480px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 500;
  padding: 7px 15px; border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.hero-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── HERO VISUAL (right column) ───────────────────────────── */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Orbital rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hv-ring-1 { width: 220px; height: 220px; border-color: rgba(255,255,255,.1); }
.hv-ring-2 { width: 340px; height: 340px; animation: spin-ring 30s linear infinite; }
.hv-ring-3 { width: 440px; height: 440px; animation: spin-ring 50s linear infinite reverse; border-style: dashed; }

@keyframes spin-ring {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Central seal */
.hv-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #1a7a4a 100%);
  border: 3px solid rgba(255,255,255,.2);
  box-shadow:
    0 0 0 8px rgba(10,74,46,.4),
    0 0 40px rgba(198,98,28,.3),
    inset 0 0 30px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  animation: float-seal 4s ease-in-out infinite;
}
.hv-seal-inner { text-align: center; }
.hv-seal-num {
  font-size: 1.9rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.03em;
}
.hv-seal-label {
  font-size: 0.65rem; color: rgba(255,255,255,.75);
  font-weight: 600; line-height: 1.3; margin-top: 4px;
  text-transform: uppercase; letter-spacing: .06em;
}
.hv-seal-since {
  font-size: 0.6rem; color: #4ade80;
  font-weight: 700; margin-top: 6px;
  letter-spacing: .08em; text-transform: uppercase;
}

@keyframes float-seal {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-10px); }
}

/* Floating category cards */
.hv-card {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 90px;
  text-align: center;
  z-index: 3;
  transition: transform .3s, background .3s;
}
.hv-card:hover {
  background: rgba(255,255,255,.12);
  transform: scale(1.05) !important;
}
.hv-card-icon { font-size: 1.4rem; line-height: 1; }
.hv-card-name { font-size: 0.72rem; font-weight: 700; color: #fff; }
.hv-card-count { font-size: 0.62rem; color: rgba(255,255,255,.5); }

/* Card positions + individual float animations */
.hv-card-1 { top: 14%;  right: 5%;   animation: float-a 3.5s ease-in-out infinite; }
.hv-card-2 { top: 14%;  left: 5%;    animation: float-b 4s   ease-in-out infinite; }
.hv-card-3 { bottom: 14%; right: 5%; animation: float-c 3.8s ease-in-out infinite; }
.hv-card-4 { bottom: 14%; left: 5%;  animation: float-d 4.2s ease-in-out infinite; }

@keyframes float-a { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-9px);  } }
@keyframes float-b { 0%,100% { transform: translateY(-5px); } 50% { transform: translateY(5px);   } }
@keyframes float-c { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-7px);  } }
@keyframes float-d { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(7px);   } }

/* Trust badges */
.hv-badge {
  position: absolute;
  font-size: 0.6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
  padding: 4px 10px; border-radius: 4px;
  z-index: 4;
}
.hv-badge-kemnaker { top: 42%; left: -2%; }
.hv-badge-bnsp     { bottom: 38%; right: 0%; }

/* ─── HERO RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 40px;
  }
  .hero-visual {
    height: 300px;
    order: -1;
  }
  .hv-ring-3 { width: 280px; height: 280px; }
  .hv-ring-2 { width: 220px; height: 220px; }
  .hv-seal   { width: 120px; height: 120px; }
  .hv-seal-num { font-size: 1.4rem; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hv-card { padding: 8px 12px; min-width: 76px; }
  .hv-card-icon { font-size: 1.1rem; }
}

@media (max-width: 540px) {
  .hero-visual { display: none; }
  .hero-title  { font-size: 2.2rem; }
  .hero-eyebrow { font-size: 10px; }
}

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--green-light);
  border-bottom: 1px solid #d0e8d8;
  padding: 20px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 40px; text-align: center;
}
.stat-number { font-size: 22px; font-weight: 800; color: var(--green); }
.stat-label  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: #b8d8c8; flex-shrink: 0; }
@media (max-width:600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 8px 20px; }
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--green); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.section-services { padding: 80px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, var(--green));
}
.service-card:hover {
  border-color: var(--accent, var(--green));
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-icon { font-size: 32px; margin-bottom: 14px; }
.service-card-title { font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.service-card-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.service-card-count {
  font-size: 12px; font-weight: 700; color: var(--accent, var(--green));
  background: var(--green-light); padding: 4px 10px;
  border-radius: 20px; display: inline-block; margin-bottom: 12px;
}
.service-card-arrow {
  font-size: 20px; color: var(--accent, var(--green));
  transition: transform .2s;
}
.service-card:hover .service-card-arrow { transform: translateX(5px); }

/* ─── CATALOG SECTION ───────────────────────────────────────── */
.section-catalog { padding: 80px 0; background: #f8fdf9; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  margin-bottom: 32px; padding: 16px 20px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn, .filter-mode {
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border); background: #fff; color: var(--text-muted);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-mode:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active, .filter-mode.active {
  background: var(--green); color: #fff; border-color: var(--green);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.training-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.training-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.training-card[data-hidden="true"] { display: none; }

.training-card-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/10; background: var(--green-light);
}
.training-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.training-card:hover .training-card-img-wrap img { transform: scale(1.04); }
.training-card-cat-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(10,74,46,.85); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 5px;
  backdrop-filter: blur(4px);
}
.training-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.training-card-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.badge-mode {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px;
  background: var(--green-light); color: var(--green);
}
.badge-cert {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  background: #e8f4ee; color: #0A4A2E;
  border: 1.5px solid #b8d8c4;
}

.training-card-title {
  font-size: 15px; font-weight: 700; color: var(--text);
  line-height: 1.4; margin-bottom: 12px; flex: 1;
}
.training-card-title a:hover { color: var(--green); }
.training-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.training-price {
  font-size: 16px; font-weight: 800; color: var(--green);
}
.training-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.btn-wa-card {
  display: inline-flex; align-items: center; gap: 4px;
  background: #25D366; color: #fff;
  padding: 7px 13px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
}
.btn-wa-card:hover { background: #1da855; }

.filter-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 15px;
}

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.section-about { padding: 80px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
@media (max-width:768px) { .about-inner { grid-template-columns: 1fr; } }

.about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; max-width: 580px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.about-badge {
  display: flex; flex-direction: column;
  background: var(--green-light); padding: 14px 20px;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.about-badge strong { font-size: 15px; color: var(--green); }
.about-badge span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.about-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--green-dark); color: #c8e8d8; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
@media (max-width:768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand p { font-size: 14px; color: #8abaa8; margin: 10px 0 18px; line-height: 1.6; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 15px; margin-bottom: 6px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: #8abaa8; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--orange); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; }

.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: #8abaa8; transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer ul li { font-size: 14px; color: #8abaa8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.footer-bottom p { font-size: 13px; color: #5a8a72; text-align: center; }

/* ─── FLOATING WA BUTTON ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-bar {
  margin-top: var(--nav-h); background: var(--green-light);
  padding: 12px 0; border-bottom: 1px solid #d0e8d8;
}
.breadcrumb-list {
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb-list a { color: var(--green); }
.breadcrumb-list a:hover { text-decoration: underline; }

/* ─── DETAIL PAGE ───────────────────────────────────────────── */
.detail-hero { padding: 40px 0; background: #fff; }
.detail-hero-inner {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
@media (max-width:900px) { .detail-hero-inner { grid-template-columns: 1fr; } }

.detail-hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.detail-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 5px; font-size: 13px; font-weight: 600;
}
.detail-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--green); margin-bottom: 14px; line-height: 1.25; }
.detail-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.detail-info-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-info-chips span {
  font-size: 13px; font-weight: 500; padding: 6px 12px;
  border-radius: 20px; border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.detail-sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 16px); }
.detail-price-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.detail-img { width: 100%; height: 200px; object-fit: cover; }
.detail-price-body { padding: 20px; }
.detail-price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 4px; }
.detail-price { font-size: 26px; font-weight: 800; color: var(--green); }
.detail-price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.btn-wa-detail {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #25D366; color: #fff;
  padding: 13px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
  transition: background .2s;
}
.btn-wa-detail:hover { background: #1da855; }

/* ─── DETAIL BODY ───────────────────────────────────────────── */
.detail-body { padding: 48px 0 64px; background: #f8fdf9; }
.detail-body-inner { max-width: 780px; }
.detail-section { margin-bottom: 40px; }
.detail-section h2 {
  font-size: 20px; font-weight: 700; color: var(--green);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}
.detail-desc { font-size: 15px; color: var(--text); line-height: 1.8; white-space: pre-line; }

.curriculum-list { display: flex; flex-direction: column; gap: 8px; }
.curriculum-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text); padding: 10px 14px;
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.curriculum-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.detail-info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.detail-info-table th, .detail-info-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.detail-info-table th { color: var(--text-muted); width: 160px; font-weight: 500; }
.detail-info-table td { color: var(--text); font-weight: 600; }

.detail-cta-box {
  background: var(--green); color: #fff;
  padding: 32px; border-radius: var(--radius);
}
.detail-cta-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.detail-cta-box p  { font-size: 15px; opacity: .85; margin-bottom: 20px; line-height: 1.6; }

/* ─── RELATED SECTION ───────────────────────────────────────── */
.section-related { padding: 56px 0; background: #fff; }
.section-related .section-title { text-align: left; margin-bottom: 28px; font-size: 1.5rem; }

/* ─── ADMIN SHARED ──────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; background: #f5f6fa; }
.sidebar {
  width: 240px; background: var(--green-dark); flex-shrink: 0;
  display: flex; flex-direction: column; position: fixed;
  top: 0; left: 0; height: 100vh; z-index: 200;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.07);
  color: #fff; font-size: 14px; font-weight: 700;
}
.sidebar-logo .nav-logo-icon { background: var(--orange); }
.sidebar-nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 13.5px; color: #8abaa8;
  transition: background .15s, color .15s; position: relative;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,.07); color: #fff;
}
.sidebar-nav a.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange); border-radius: 0 2px 2px 0;
}
.sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-footer {
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.07);
}
.sidebar-footer a {
  font-size: 13px; color: #8abaa8; display: flex; align-items: center; gap: 8px;
}
.sidebar-footer a:hover { color: #fff; }

.main-area { margin-left: 240px; flex: 1; display: flex; flex-direction: column; }
.topbar {
  background: #fff; padding: 0 28px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #e8e8e8; position: sticky; top: 0; z-index: 100;
}
.topbar-title { font-size: 17px; font-weight: 700; color: var(--green); }
.topbar-user { font-size: 13px; color: var(--text-muted); }

.content { padding: 28px; flex: 1; }
.card-section {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid #e8e8e8; padding: 22px 24px; margin-bottom: 20px;
}
.card-section h6 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-muted); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid #f0f0f0;
}
.btn-save {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-save:hover { background: var(--green-mid); }

.stat-card {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid #e8e8e8; padding: 20px 22px;
}
.stat-card-num { font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; }
.stat-card-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.img-preview { border-radius: 8px; border: 1px solid var(--border); }

@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-area { margin-left: 0; }
}

/* ─── FADE-IN ANIMATION ─────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   PATCHES: skip-link · social-proof · cookie-notice
   ═══════════════════════════════════════════════════════════════════ */

/* ─── SKIP NAVIGATION (Accessibility / WCAG 2.4.1) ─────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.15s ease;
  white-space: nowrap;
}
.skip-link:focus { top: 0; outline: 3px solid var(--orange); outline-offset: 2px; }

/* ─── SOCIAL PROOF ──────────────────────────────────────────────── */
.section-social-proof {
  padding: 80px 0;
  background: var(--green-dark);
  text-align: center;
}
.section-social-proof .section-eyebrow { color: #4ade80; }
.section-social-proof .section-title   { color: #f1f5f9; margin-bottom: 12px; }
.section-social-proof .section-subtitle { color: #94a3b8; }

.sp-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin: 48px 0 56px;
}
.sp-stat { text-align: center; }
.sp-stat-num {
  display: block;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}
.sp-stat-desc {
  display: block;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}

.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.sp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.sp-card:hover {
  border-color: rgba(74,222,128,.35);
  transform: translateY(-3px);
}
.sp-card-program {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(10,74,46,.8);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sp-card-quote {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.sp-card-quote::before { content: '\201C'; color: #4ade80; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.sp-card-quote::after  { content: '\201D'; color: #4ade80; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.sp-card-footer { display: flex; align-items: center; gap: 12px; }
.sp-card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.sp-card-name { font-weight: 700; font-size: 0.88rem; color: #f1f5f9; }
.sp-card-meta { font-size: 0.76rem; color: #64748b; margin-top: 1px; }

@media (max-width: 640px) {
  .sp-stats { gap: 32px; }
  .section-social-proof { padding: 56px 0; }
}

/* ─── COOKIE / PRIVACY NOTICE (UU PDP No. 27/2022) ─────────────── */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--green-dark);
  border-top: 2px solid var(--green);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #cbd5e1;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  transition: transform .3s ease;
}
#cookie-notice.hidden { transform: translateY(110%); }
#cookie-notice p { flex: 1; min-width: 260px; margin: 0; line-height: 1.55; }
#cookie-notice strong { color: #f1f5f9; }
.cookie-btn {
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.cookie-btn:hover { background: var(--orange-dark); }
@media (max-width: 540px) {
  #cookie-notice { flex-direction: column; align-items: flex-start; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SLIDESHOW + NEW FONTS
   ═══════════════════════════════════════════════════════════════════ */

/* Space Grotesk for body, Syne for display headings */
body { font-family: 'Space Grotesk', system-ui, sans-serif; }

.nav-logo-text strong,
.hero-title,
.section-title,
.sp-card-name,
h1, h2, h3 {
  font-family: 'Syne', 'Space Grotesk', system-ui, sans-serif;
}

/* Nav logo name — high-tech tracked */
.nav-logo-text strong {
  letter-spacing: -0.03em;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar.scrolled .nav-logo-text strong {
  background: linear-gradient(135deg, var(--green) 30%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO SLIDESHOW ─────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: hero-kb 8s ease-out forwards;
}
@keyframes hero-kb {
  0%   { transform: scale(1)    translateX(0); }
  100% { transform: scale(1.06) translateX(-1%); }
}

/* Upload your 4 photos to /assets/img/ and they appear here */
/* Hero slideshow — Unsplash CDN (no download needed, loads automatically) */
/* Slide 1: Safety training industrial workers */
.hero-slide-1 {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=85&auto=format&fit=crop');
}
/* Slide 2: Professional team collaboration */
.hero-slide-2 {
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=85&auto=format&fit=crop');
}
/* Slide 3: Environmental field inspection */
.hero-slide-3 {
  background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&q=85&auto=format&fit=crop');
}
/* Slide 4: Industrial site safety */
.hero-slide-4 {
  background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1600&q=85&auto=format&fit=crop');
}
/* To replace with your own photos later: upload to /assets/img/hero-1.jpg etc
   and change the URLs above back to url('/assets/img/hero-1.jpg') */

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(4, 22, 12, 0.88) 0%,
    rgba(6, 40, 22, 0.72) 45%,
    rgba(6, 40, 22, 0.35) 100%
  );
}

/* Slide dot indicators */
.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 5;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: all .3s ease;
}
.hero-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* Make hero content sit above the slideshow */
.hero-inner,
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Eyebrow pulsing dot */
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
  animation: eyebrow-pulse 2s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}

/* Mobile: dots at bottom-center */
@media (max-width: 960px) {
  .hero-slide-dots {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE: 2 CARDS PER ROW (Shopee-style)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Force 2 columns on mobile */
  .training-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px;
  }

  /* Compact card for 2-col layout */
  .training-card-img-wrap img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .training-card-body {
    padding: 10px;
  }

  .training-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
  }

  .badge-mode, 

  .training-card-title {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .training-card-title a { font-size: inherit; }

  .training-card-footer {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px;
  }

  .training-price {
    font-size: 13px !important;
    font-weight: 800;
  }

  .training-price small { font-size: 9px; }

  .btn-wa-card {
    width: 100%;
    text-align: center;
    font-size: 10px !important;
    padding: 7px 8px !important;
    border-radius: 7px;
  }

  /* Compact filter bar */
  .filter-bar {
    gap: 8px;
    margin-bottom: 16px;
  }
  .filter-btn, .filter-mode {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }

  /* Compact section headers */
  .section-title { font-size: 1.4rem !important; }
  .section-header { margin-bottom: 20px; }
}

@media (max-width: 380px) {
  .training-grid { gap: 8px !important; }
  .training-card-title { font-size: 11px !important; }
  .training-price { font-size: 12px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   FULL SHOPEE-STYLE MOBILE LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

/* ── Mobile search bar in navbar ── */
.nav-search-mobile {
  display: none;
  flex: 1;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 0 12px;
  height: 34px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  margin: 0 8px;
}
.nav-search-icon { display: flex; align-items: center; opacity: .7; }
.navbar.scrolled .nav-search-mobile {
  background: #f1f3f5;
  color: #9ca3af;
}

/* ── Category scroll chips ── */
.mobile-cat-scroll {
  display: none;
  background: #fff;
  padding: 10px 0 9px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 56px;
  z-index: 40;
}
.mobile-cat-inner {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 12px;
}
.mobile-cat-inner::-webkit-scrollbar { display: none; }
.mobile-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f3f5;
  color: #6b7280;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all .15s;
}
.mobile-chip.active,
.mobile-chip:active {
  background: var(--green);
  color: #fff;
}

/* ── Promo banner ── */
.mobile-promo {
  display: none;
  margin: 10px 12px 4px;
  background: linear-gradient(135deg, var(--orange) 0%, #f59e0b 100%);
  border-radius: 14px;
  padding: 13px 14px;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.mobile-promo::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.mobile-promo-icon { font-size: 26px; flex-shrink: 0; }
.mobile-promo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mobile-promo-text strong { font-size: 12px; color: #fff; font-weight: 800; }
.mobile-promo-text span  { font-size: 10px; color: rgba(255,255,255,.85); }
.mobile-promo-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: #fff;
  color: #0A4A2E;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 1;
}

/* ── Bottom navigation bar ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,.08);
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bottom-nav { display: none; }

.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  transition: color .15s;
}
.mbn-item.active,
.mbn-item:active { color: var(--green); }
.mbn-item svg { flex-shrink: 0; }

.mbn-wa {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
}
.mbn-wa-btn {
  background: var(--orange);
  border-radius: 14px;
  width: 48px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(232,97,26,.35);
}

/* ── Body padding for bottom nav ── */
@media (max-width: 768px) {
  body { padding-bottom: 60px; }
}

/* ══════════════════════════════════════
   ALL MOBILE OVERRIDES — max 768px
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show mobile elements */
  .nav-search-mobile    { display: flex; }
  .mobile-cat-scroll    { display: block; }
  .mobile-promo         { display: flex; }
  .mobile-bottom-nav    { display: flex; }

  /* Hide desktop nav links on mobile */
  .nav-links            { display: none !important; }
  .nav-socials          { display: none; }
  .btn-wa-nav           { display: none; }
  .nav-hamburger        { display: none; }

  /* Compact navbar height */
  .navbar { height: 56px; }
  :root   { --nav-h: 56px; }

  /* Navbar always white on mobile */
  .navbar {
    background: var(--green) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
  }
  .navbar.scrolled {
    background: #fff !important;
  }
  .navbar.scrolled .nav-search-mobile {
    background: #f1f3f5;
    color: #9ca3af;
  }

  /* Hero adjustments */
  .hero-inner { padding: 40px 0 20px; }
  .hero-title { font-size: 1.8rem; }

  /* Hide desktop layanan section — chips replace it on mobile */
  .section-services { display: none; }

  /* Compact section headers */
  .section-header   { margin-bottom: 18px; }
  .section-title    { font-size: 1.3rem !important; }
  .section-eyebrow  { font-size: 10px; }

  /* Hide desktop filter bar — mobile chips handle this */
  .filter-bar { display: none; }

  /* Section catalog padding */
  .section-catalog .container { padding: 0; }
  .section-catalog .section-header { padding: 20px 16px 0; }

  /* 2-col training grid */
  .training-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 12px 10px;
  }

  .training-card-body   { padding: 9px; }
  .training-card-meta   { gap: 3px; margin-bottom: 5px; }
  .badge-mode,
  
  .training-card-title  { font-size: 11.5px !important; line-height: 1.3 !important; margin-bottom: 7px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .training-price       { font-size: 13px !important; font-weight: 800; }
  .training-price small { font-size: 9px; }
  .training-card-footer { flex-direction: column; align-items: flex-start !important; gap: 5px; }
  .btn-wa-card          { width: 100%; text-align: center; font-size: 10px !important; padding: 7px 4px !important; }

  /* Social proof compact */
  .sp-stats    { gap: 24px; }
  .sp-stat-num { font-size: 1.8rem; }
  .sp-testimonials { grid-template-columns: 1fr; }

  /* Footer compact */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom p { font-size: 11px; }

  /* Hide desktop floating WA button (bottom nav has it) */
  .wa-float { display: none; }

  /* About section */
  .about-inner { grid-template-columns: 1fr; }
  .about-actions { flex-direction: column; }
  .about-actions a { text-align: center; }
}

/* Script to sync mobile chips with filter */

/* ═══════════════════════════════════════════════════════════════════
   SERVICES SECTION — SHINING GLASS (CSS only, no HTML change)
   ═══════════════════════════════════════════════════════════════════ */

.section-services {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0faf5 40%, #e4f2ff 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Dot grid */
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(10,74,46,.07) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Green glow orb top-right */
.section-services::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Blue orb bottom-left via services-grid ::before */
.section-services .services-grid {
  position: relative;
}
.section-services .services-grid::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Animated shine sweep */
.section-services .container::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: wt-shine-sweep 5s ease-in-out infinite;
}
@keyframes wt-shine-sweep {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.section-services .container { position: relative; z-index: 1; }

/* Heading */
.section-services .section-eyebrow  { color: #0A4A2E; }
.section-services .section-title    { color: #0a1f10; }
.section-services .section-subtitle { color: #5a7a65; }

/* Glass cards */
.section-services .service-card {
  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 24px rgba(10,74,46,.08), inset 0 1px 0 rgba(255,255,255,.9) !important;
  transition: all .25s ease !important;
  overflow: hidden;
}

/* Inner top shine */
.section-services .service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,0));
  border-radius: 18px 18px 0 0;
  pointer-events: none;
  z-index: 0;
}

.section-services .service-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  background: rgba(255,255,255,.75) !important;
  box-shadow: 0 20px 48px rgba(10,74,46,.15), inset 0 1px 0 rgba(255,255,255,1) !important;
  border-color: rgba(255,255,255,1) !important;
}

/* Category glow on hover */
.section-services .service-card[style*="--accent: #E8611A"]:hover,
.section-services .service-card[style*="--accent:#E8611A"]:hover {
  box-shadow: 0 20px 48px rgba(232,97,26,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #22C55E"]:hover,
.section-services .service-card[style*="--accent: #22c55e"]:hover {
  box-shadow: 0 20px 48px rgba(34,197,94,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #3B82F6"]:hover,
.section-services .service-card[style*="--accent: #3b82f6"]:hover {
  box-shadow: 0 20px 48px rgba(59,130,246,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #F59E0B"]:hover,
.section-services .service-card[style*="--accent: #f59e0b"]:hover {
  box-shadow: 0 20px 48px rgba(245,158,11,.18), inset 0 1px 0 #fff !important;
}

/* Text on glass */
.section-services .service-card-title { color: #0a2010 !important; position: relative; z-index: 1; }
.section-services .service-card-desc  { color: #4a6a55 !important; position: relative; z-index: 1; }
.section-services .service-card-icon  { position: relative; z-index: 1; }
.section-services .service-card-count {
  background: rgba(10,74,46,.08) !important;
  color: #0A4A2E !important;
  border: 1px solid rgba(10,74,46,.15) !important;
  position: relative; z-index: 1;
}
.section-services .service-card-arrow { position: relative; z-index: 1; color: rgba(10,74,46,.2) !important; }
.section-services .service-card:hover .service-card-arrow { color: #0A4A2E !important; }

/* Colored top bar — override ::before */
.section-services .service-card::before { border-radius: 18px 18px 0 0 !important; z-index: 2; }
