﻿/* =========================================================
   PT TOGA FOOD NUSANTARA â€” style.css
   Development by: Ilham Bintang | B2B Food Manufacturing
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --red:        #C40000;
  --red-dark:   #950000;
  --red-glow:   rgba(196,0,0,.15);
  --gold:       #F7C000;
  --gold-light: #FFD740;
  --gold-muted: rgba(247,192,0,.18);
  --ink:        #0E0E0E;
  --ink-80:     rgba(14,14,14,.80);
  --ink-40:     rgba(14,14,14,.40);
  --ink-08:     rgba(14,14,14,.08);
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;
  --surface:    #FFFFFF;
  --border:     rgba(14,14,14,.09);

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  26px;
  --radius-xl:  36px;

  --shadow-sm:  0 2px 12px rgba(14,14,14,.06);
  --shadow-md:  0 8px 32px rgba(14,14,14,.09);
  --shadow-lg:  0 24px 64px rgba(14,14,14,.10);
  --shadow-red: 0 16px 48px rgba(196,0,0,.22);

  --max-width:  1200px;
  --font-head:  'Sora', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --spring:     cubic-bezier(.34,1.56,.64,1);
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
main { min-height: 50vh; }

/* â”€â”€ LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: var(--max-width);
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

/* â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-top: 0;
}

/* â”€â”€ HEADER / NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 !important;
  transition: box-shadow .3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(14,14,14,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px !important;
  min-height: 80px !important;
  padding: 0 !important;
  gap: 1rem;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 152px !important;
  width: auto !important;
  object-fit: contain;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .navbar-nav li { list-style: none; }

.nav-link {
  position: relative;
  padding: .5rem .85rem;
  color: var(--ink-80);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: color .2s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--red); }

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  transition: border-color .2s;
  z-index: 1001;
}

.navbar-toggler:hover { border-color: var(--red); }

.navbar-toggler-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: background .2s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after  { bottom: -6px; }

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s var(--spring), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.btn:active { transform: scale(.97) !important; }

.btn-cta {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border-color: var(--red);
}

.btn-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(196,0,0,.30);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-cta-light {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-cta-light:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(247,192,0,.30);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* â”€â”€ PAGE HERO (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,0,0,.55), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(247,192,0,.25), transparent);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero-badge {
  display: inline-flex;
  padding: .3rem 1rem;
  border-radius: 999px;
  background: rgba(247,192,0,.18);
  border: 1px solid rgba(247,192,0,.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin: 0 0 .85rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -.04em;
  color: var(--white);
}

.page-hero p {
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 1.05rem;
  max-width: 600px;
}

/* â”€â”€ HERO (homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: var(--off-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  opacity: .6;
}

.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(196,0,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy small {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: var(--gold-muted);
  border: 1px solid rgba(247,192,0,.3);
  color: #7A5E00;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .85rem;
}

.hero-copy small::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: -.05em;
  color: var(--ink);
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-copy p {
  max-width: 520px;
  color: var(--ink-80);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-card {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}



.hero-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .1rem;
}

.hero-card span {
  color: var(--ink-40);
  font-size: .82rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 100px rgba(14,14,14,.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(196,0,0,.65), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(247,192,0,.35), transparent);
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.hero-visual .visual-card {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}

.hero-visual h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: .75rem;
}

.hero-visual p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin: 0;
}

.visual-stats {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.stat-chip {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: .6rem 1rem;
  text-align: center;
  color: var(--white);
}

.stat-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.stat-chip span {
  font-size: .72rem;
  opacity: .75;
  letter-spacing: .04em;
}

/* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section { padding: 5rem 0; }

.section-about {
  padding-top: 1rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(400px, 1.35fr);
  gap: 2rem;
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-copy .section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(247,192,0,.16);
  border: 1px solid rgba(247,192,0,.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-copy h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.about-copy p {
  margin: 0;
  color: var(--ink-80);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-actions .btn {
  min-width: 170px;
}

.about-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.about-visual img {
  width: 110%;
  max-width: 140%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 2rem 0 1.5rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--gold-muted);
  border: 1px solid rgba(247,192,0,.25);
  color: #7A5E00;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.about-card-row {
  margin-top: 1rem;
}

.about-card-row .card-glass {
  min-height: 230px;
}

.section-values {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 3rem 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
  gap: 2rem;
  align-items: center;
}

.values-grid.values-reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
}

.values-copy .section-label,
.about-copy .section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(247,192,0,.16);
  border: 1px solid rgba(247,192,0,.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.values-copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
}

.values-copy p {
  margin: 0 0 2rem;
  color: var(--ink-80);
  font-size: 1.02rem;
  line-height: 1.85;
}

.values-cards {
  display: grid;
  gap: 1rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: .85rem;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--ink-80);
}

.values-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(247,192,0,.18);
  background: radial-gradient(circle at top left, rgba(247,192,0,.14), transparent 32%),
              linear-gradient(180deg, rgba(255,255,255,.97), rgba(247,192,0,.08));
  padding: 1rem 1.5rem 0;
}

.values-visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

@media (max-width: 980px) {
  .about-hero,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center center;
  transform: none;
  display: block;
}

@media (max-width: 760px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
    min-width: 0;
  }

  .about-image {
    order: -1;
  }
}

.section-head {
  display: grid;
  gap: .65rem;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}

.section-head p {
  margin: 0;
  color: var(--ink-80);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.section-link { margin-top: 2rem; text-align: center; }

.section-link a {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
}

.section-link a:hover { text-decoration: underline; }
.section-alt { background: var(--white); }

/* â”€â”€ GRIDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* â”€â”€ CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-glass {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
}

.card-glass:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-glass h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card-glass p { margin: 0; color: var(--ink-80); font-size: .95rem; }

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease), border-color .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,0,0,.15);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
}

.glightbox-link {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}

.glightbox-link:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}

.glightbox-link:hover img {
  transform: scale(1.02);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(196,0,0,.25);
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { margin: 0; color: var(--ink-80); font-size: .92rem; }

/* â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-list { display: grid; gap: .85rem; }

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, transform .25s var(--spring);
}

.process-step:hover { border-color: rgba(196,0,0,.2); transform: translateX(4px); }

.process-step .step-marker {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(196,0,0,.25);
}

.process-step .step-body h4 { margin: 0 0 .3rem; font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.process-step .step-body p  { margin: 0; color: var(--ink-80); font-size: .9rem; }

/* â”€â”€ CERTIFICATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.certifications {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.cert-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--spring), box-shadow .3s;
}

.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card i { color: var(--red); font-size: 2rem; }
.cert-card strong { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin: .75rem 0 .35rem; }
.cert-card p { margin: 0; color: var(--ink-80); font-size: .85rem; }

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: transform .3s var(--spring), box-shadow .3s;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(247,192,0,.3);
  pointer-events: none;
}

.testimonial-card p { color: var(--ink-80); margin-bottom: 1.25rem; font-size: .95rem; font-style: italic; }
.testimonial-card .author strong { font-family: var(--font-head); font-size: .9rem; font-weight: 700; }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-list { display: grid; gap: .75rem; max-width: 860px; }

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .2s;
}

.faq-item.active, .faq-item:hover { border-color: rgba(196,0,0,.2); }

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red-glow);
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: transform .3s var(--spring), background .2s;
}

.faq-item.active button span { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-item .answer { padding: 0 1.5rem 1.25rem; color: var(--ink-80); display: none; font-size: .95rem; }
.faq-item.active .answer { display: block; }

/* â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-cta {
  position: relative;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196,0,0,.6), transparent),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(247,192,0,.2), transparent);
  pointer-events: none;
}

.section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.section-cta .cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-cta h2 { margin: 0 0 .6rem; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -.04em; color: var(--white); }
.section-cta p  { margin: 0; max-width: 560px; color: rgba(255,255,255,.75); font-size: 1rem; }

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-panel {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form-panel .form-label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; letter-spacing: .02em; margin-bottom: .4rem; }

.contact-form-panel .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: .75rem 1rem;
  background: var(--off-white);
  transition: border-color .2s, background .2s;
}

.contact-form-panel .form-control:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--red-glow);
  outline: none;
}

/* Map responsif */
.map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Alert */
.alert-success, .alert-danger {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
}

.alert-success { background: #e8f7ee; color: #1a6639; border: 1px solid #bce4cb; }
.alert-danger  { background: #fdecec; color: #8f1c1c; border: 1px solid #f5c2c2; }

/* â”€â”€ ARTIKEL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-list { display: grid; gap: 1rem; }

.article-card {
  display: block;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s, transform .25s var(--spring), box-shadow .25s;
}

.article-card:hover { border-color: rgba(196,0,0,.2); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.article-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.article-card p  { margin: 0; color: var(--ink-80); font-size: .92rem; }
.article-card.is-disabled { opacity: .5; pointer-events: none; }

.article-body { padding: 3rem 0 5rem; }
.article-body h1 { margin-bottom: 1rem; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.article-body h2 { margin-top: 2.5rem; }
.article-body p  { color: var(--ink-80); font-size: 1.02rem; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--ink);
  color: rgba(255,255,255,.75);
  margin-top: 3rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}

.footer-columns { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer h5 { font-family: var(--font-head); color: var(--white); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer p  { font-size: .92rem; }
.footer a  { color: rgba(255,255,255,.65); transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-links a { font-size: .9rem; }
.footer-bottom { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,.4); font-size: .85rem; }

/* â”€â”€ WA FLOAT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 16px 40px rgba(37,211,102,.40);
  z-index: 9999;
  transition: transform .25s var(--spring), box-shadow .25s;
}

.wa-float:hover { transform: translateY(-3px) scale(1.06); color: var(--white); box-shadow: 0 24px 56px rgba(37,211,102,.50); }

/* â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-group] > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-group] > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-group] > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-group] > *:nth-child(4) { transition-delay: .35s; }
[data-reveal-group] > *:nth-child(5) { transition-delay: .45s; }
[data-reveal-group] > *:nth-child(6) { transition-delay: .55s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (min-width: 961px) {
  .navbar-toggler { display: none !important; }
  .desktop-nav    { display: flex !important; }
}

/* â”€â”€ TABLET & MOBILE (<= 960px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 960px) {

  /* Tampilkan hamburger */
  .navbar-toggler { display: flex; }

  /* Sembunyikan nav, jadikan overlay FIXED di bawah header */
  .desktop-nav {
    display: none;
    position: fixed;          /* â† KEY FIX: fixed bukan absolute */
    top: 80px;                /* tepat di bawah header 80px */
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 16px 48px rgba(14,14,14,.12);
    gap: 0;
    /* Animasi slide down */
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .desktop-nav.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .desktop-nav .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .desktop-nav .navbar-nav li { width: 100%; }

  .nav-link {
    display: block;
    width: 100%;
    padding: .9rem .5rem;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
  }

  .nav-link::after { display: none; }

  .desktop-nav .btn-cta {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  /* Layout fixes */
  .hero-grid,
  .grid-3,
  .testimonials,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy   { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-card   { margin: 1.5rem auto 0; }

  .certifications   { grid-template-columns: repeat(2, 1fr); }
  .footer-columns   { grid-template-columns: 1fr; gap: 2rem; }
  .section-head     { text-align: center; margin: 0 auto 2rem; }
}

/* â”€â”€ MOBILE (<= 768px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .hero    { padding: 3rem 0 2.5rem; }
  .section { padding: 3.5rem 0; }

  .hero-copy h1 { font-size: 2.1rem; }

  .section-cta { padding: 2rem 1.75rem; }
  .section-cta .cta-content { flex-direction: column; align-items: flex-start; }

  .grid-4       { grid-template-columns: 1fr 1fr; }
  .process-step { flex-direction: column; gap: .75rem; }
  .visual-stats { display: none; }
}

/* â”€â”€ SMALL MOBILE (<= 560px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }

  .brand img { height: 100px !important; }

  .hero-copy h1 { font-size: 1.85rem; }
  .hero-actions .btn { width: 100%; }

  .grid-4          { grid-template-columns: 1fr; }
  .certifications  { grid-template-columns: 1fr; }
  .hero-visual     { min-height: 280px; }
  .contact-form-panel { padding: 1.5rem; }
  .section-cta     { padding: 1.5rem; }
}


.about-wrapper {
  display: grid !important;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr) !important;
  gap: 1.75rem !important;
  align-items: start !important;
}

.about-text {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.about-image {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  background: transparent !important;
  border-radius: var(--radius-xl) !important;
}

.about-text h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  letter-spacing: -.02em;
}

.about-text p {
  margin: 0 0 1.4rem;
  color: var(--ink-80);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  display: block;
}

@media (max-width: 760px) {
  .about-wrapper {
    flex-direction: column !important;
  }

  .about-text,
  .about-image {
    width: 100% !important;
    min-width: 0 !important;
  }

  .about-image {
    order: -1 !important;
  }
}
/* ===== TENTANG KAMI MOBILE FIX ===== */

@media (max-width: 768px) {

  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .about-copy{
    max-width: 100%;
    text-align: center;
  }

  .about-actions{
    justify-content: center;
  }

  .about-actions .btn{
    width: 100%;
    max-width: 280px;
  }

  .about-visual{
    min-height: auto;
  }

  .about-visual img{
    width: 100% !important;
    max-width: 100% !important;
  }

  .values-grid,
  .values-grid.values-reverse{
    grid-template-columns: 1fr !important;
  }

  .values-copy{
    text-align: center;
  }

  .section-values{
    padding: 2rem 1.25rem;
  }

}