/* ============================================================
   PT FITRA HADI RAYA — Desain Baru
   Palet: Krem #F5F0E8, Hitam #1A1A1A, Kuning #D4A900, Abu #E0D8CC
   ============================================================ */

/* ===== VARIABEL ===== */
:root {
  --cream:        #FFFFFF;
  --cream-dark:   #F5F5F5;
  --cream-mid:    #EEEEEE;
  --black:        #000000;
  --dark:         #000000;
  --navy:         #000000;
  --navy-light:   #1A1A1A;
  --yellow:       #FFC800;
  --yellow-light: #FFD700;
  --yellow-pale:  #FFF8DC;
  --white:        #FFFFFF;
  --gray-100:     #F5F5F5;
  --gray-200:     #E0E0E0;
  --gray-300:     #BDBDBD;
  --gray-400:     #9E9E9E;
  --gray-500:     #757575;
  --gray-600:     #616161;
  --gray-700:     #424242;
  --gray-800:     #212121;
  --gray-900:     #000000;
  --red:          #C0392B;
  --green:        #16A34A;
  --blue:         #2563EB;

  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-h:       'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:       4px;
  --radius-sm:    2px;
  --radius-lg:    8px;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TIPOGRAFI ===== */
h1,h2,h3,h4,h5 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== TOMBOL ===== */
.btn-primary, .btn-secondary, .btn-wa, .btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  border: 2px solid var(--yellow); border-radius: 50px;
}
.btn-primary:hover { background: var(--yellow-light); border-color: var(--yellow-light); }
.btn-secondary {
  background: #25D366; color: #ffffff;
  border: 2px solid #25D366; border-radius: 50px;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: #ffffff; }
.btn-secondary:active { background: #1aad52; border-color: #1aad52; color: #ffffff; }
.btn-wa {
  background: #25D366; color: #fff;
  border: 2px solid #25D366; border-radius: 50px;
}
.btn-wa:hover { background: #1aad52; border-color: #1aad52; }
.btn-outline {
  background: transparent; color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  background: transparent; color: var(--yellow);
  border: 2px solid var(--yellow); border-radius: var(--radius);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-yellow:hover { background: var(--yellow); color: var(--black); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  border-bottom: none;
  height: 64px;
  transform: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.navbar.nav-scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar.nav-scrolled .navbar-menu li a:not(.btn-admin-nav),
.navbar.nav-scrolled .logo-name,
.navbar.nav-scrolled .logo-tagline {
  color: var(--black) !important;
}
.navbar .container {
  display: flex; align-items: center;
  height: 64px; gap: 40px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-icon-fallback {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; letter-spacing: 0.04em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 18px; font-weight: 900; letter-spacing: 0.04em; color: var(--black); text-transform: uppercase; }
.logo-tagline { font-size: 10px; color: var(--gray-500); letter-spacing: 0.06em; text-transform: uppercase; }

.navbar-menu {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.navbar-menu li a {
  position: relative;
  padding: 4px 12px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
}
.navbar-menu li a:not(.btn-admin-nav),
.logo-name,
.logo-tagline {
  color: rgba(255,255,255,0.90) !important;
  transition: color 0.35s ease;
}
.navbar-menu li a:hover, .navbar-menu li a.active { color: var(--yellow); }
.navbar-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.btn-admin-nav {
  background: var(--black) !important; color: var(--white) !important;
  padding: 8px 16px !important; border-radius: 50px !important;
  letter-spacing: 0.06em !important;
}
.btn-admin-nav:hover { background: var(--yellow) !important; color: var(--black) !important; }
.btn-admin-nav::after { display: none !important; }

.navbar-socials {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.navbar-socials a {
  width: 34px; height: 34px; border-radius: 50px;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-600);
  transition: var(--transition);
}
.navbar-socials a:hover { border-color: var(--yellow); color: var(--yellow); }

.navbar-toggle {
  display: none; background: none; border: none; font-size: 20px;
  color: var(--black); margin-left: auto; padding: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover; background-position: center;
  background-color: var(--black);
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('../images/slides/bagunan.png'); }
.hero-slide-2 { background-image: url('../images/slides/rapat.png'); }
.hero-slide-3 { background-image: url('../images/slides/foto_bersama.png'); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.15) 100%);
}

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 44px; height: 44px;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.30);
  color: #fff; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border-radius: 50%;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-content-wrap {
  position: relative; z-index: 4; width: 100%;
  padding-bottom: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 4px; margin-top: 0;
}
.hero h1 {
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 900; color: var(--white);
  text-transform: uppercase; margin-bottom: 10px;
  line-height: 1.2; margin-top: 0;
}
.hero h1 .yellow { color: var(--yellow); }
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.75);
  max-width: 480px; margin-bottom: 32px; line-height: 1.65;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-buttons .btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.hero-buttons .btn-secondary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.hero-buttons .btn-secondary:active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-stats-panel {
  display: none;
}
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  text-align: center; padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); background: rgba(0,0,0,0.2);
}
.stat-card i { font-size: 22px; color: var(--yellow); margin-bottom: 8px; display: block; }
.stat-num { font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.hero-left {
  max-width: 780px;
  text-align: center;
}
.hero-left .hero-badge {
  justify-content: center;
}
.hero-left .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.hero-left .hero-buttons {
  justify-content: center;
}

.hero-left h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 20px auto;
  border-radius: 2px;
}

.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.hero-dot.active { background: var(--yellow); width: 24px; border-radius: 3px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--yellow); overflow: hidden;
  padding: 12px 0; border-bottom: 3px;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-inner span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
  padding: 0 48px; flex-shrink: 0;
}
.ticker-inner i { color: var(--black); margin-right: 6px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ===== SECTION ===== */
.section-layanan {
  background: var(--black);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.section-layanan::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.05);
  pointer-events: none;
}

.section-layanan::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.04);
  pointer-events: none;
}

.section-layanan .section-label {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.section-layanan .section-header h2 {
  color: var(--white);
}

.section-layanan .section-header p {
  color: rgba(255,255,255,0.5);
}

.section-layanan .feature-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.section-layanan .feature-card h3 {
  color: var(--white);
}

.section-layanan .feature-card p {
  color: rgba(255,255,255,0.5);
}

.section-layanan .feature-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--yellow);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,200,0,0.2);
  background: #1a1a1a;
}

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--yellow);
}
.section-header h2 {
  font-size: clamp(22px, 3vw, 34px); font-weight: 900;
  color: var(--black); text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 span { color: var(--yellow); }
.section-header p { font-size: 14px; color: var(--gray-500); max-width: 500px; margin: 0 auto; }
.divider { width: 48px; height: 3px; background: var(--yellow); margin: 20px auto 0; }

/* ===== ABOUT PREVIEW (BERANDA) ===== */
.about-preview {
  display: grid; grid-template-columns: 55% 1fr; gap: 72px; align-items: center;
}
.about-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow);
  padding-bottom: 8px; border-bottom: 2px solid var(--yellow);
  display: inline-block; margin-bottom: 20px;
}
.about-preview h2 {
  font-size: clamp(22px, 3vw, 36px); font-weight: 900;
  color: var(--black); text-transform: uppercase;
  margin-bottom: 14px; line-height: 1;
}
.about-text { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; }
.vm-row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.vm-icon-box {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.vm-text-box h4 { font-size: 13px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.vm-text-box p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* About Image Side */
.about-image-side { position: relative; }
.about-img-card {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; color: var(--white);
}
.about-img-card h3 { font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 6px; }
.about-img-card p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.card-icon { font-size: 48px; color: var(--yellow); margin-bottom: 16px; display: block; }
.about-stats-row { display: flex; justify-content: center; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.about-stat .num { font-size: 26px; font-weight: 900; color: var(--yellow); }
.about-stat .lbl { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); color: var(--black);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  border: 4px solid var(--cream);
}
.exp-badge .num { font-size: 28px; font-weight: 900; line-height: 1; }
.exp-badge .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-top-color 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.10),
    0 0 0 1px rgba(255, 193, 7, 0.3);
  border-top-color: var(--yellow);
}

.feature-icon {
  width: 56px; height: 56px; background: var(--yellow);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; color: var(--black);
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(250, 200, 0, 0.45);
  animation: none;
}

.feature-card h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { 
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
  border-top-color: var(--yellow);
}
.product-img-wrap {
  position: relative; height: 200px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img-wrap img { 
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.1);
}
.product-img-wrap i { 
  font-size: 52px; color: var(--gray-300);
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap i {
  transform: scale(1.15);
}
.product-code-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--black); color: var(--yellow);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-sm);
}
.product-type-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-sm);
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-category {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 6px;
}
.product-name { font-size: 15px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.product-body .btn-wa { width: 100%; justify-content: center; font-size: 12px; padding: 10px; margin-top: auto; }

/* ===== STATS BAND ===== */
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-band-item {
  text-align: center;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid transparent;
  border-radius: 8px;
  padding: 28px 24px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease,
              border-top-color 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: visible;
}
.stats-band-item:hover {
  transform: translateY(-8px);
  border-top-color: var(--yellow);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,200,0,0.2);
  background: #1a1a1a;
}
.stats-band-item i { font-size: 28px; color: var(--yellow); margin-bottom: 12px; display: block; }
.stats-band-num { font-size: 40px; font-weight: 900; color: var(--white); line-height: 1; }
.stats-band-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: #ffffff; padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  display: none;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--black); text-transform: uppercase; margin-bottom: 14px; }
.cta-section h2 span { color: var(--yellow); }
.cta-section p { font-size: 14px; color: rgba(0,0,0,0.6); margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.cta-section .btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.cta-section .btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.cta-section .btn-secondary:active {
  background: #333333;
  color: var(--white);
  border-color: #333333;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--black); padding: 110px 0 70px;
  margin-top: 0;
}
.page-hero ~ .section:first-of-type,
div.page-hero + section,
section.section {
  padding-top: 50px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  color: var(--white); text-transform: uppercase; line-height: 1;
}
.page-hero h1 span { color: var(--yellow); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: 10px; }

/* ===== ABOUT PAGE ===== */

/* -- Profil -- */
.about-profile-section { padding: 60px 0; }
.about-profile-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: stretch; min-height: 100%; }

/* ===== UPDATE: Kolom foto — gap 0, terpusat vertikal ===== */
.about-photo-col { display: flex; flex-direction: column; gap: 0; height: 100%; justify-content: center; }

.about-photo-wrap { position: relative; flex: 1; min-height: 400px; }
.about-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.about-exp-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--yellow); color: var(--black);
  padding: 12px 18px; border-radius: var(--radius);
  text-align: center; border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  overflow: visible;
}
.about-exp-badge:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 3px rgba(0,0,0,0.15);
}
.about-exp-num { display: block; font-size: 26px; font-weight: 900; line-height: 1; }
.about-exp-label { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--cream-dark);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; border: 2px dashed var(--gray-200);
}

/* ===== UPDATE: Stats row — radius bawah saja, margin 0 ===== */
.about-stats-row {
  display: flex; align-items: center; gap: 0;
  background: var(--black);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px; margin-top: 0;
}
.about-stat { flex: 1; text-align: center; }
.about-stat-num { display: block; font-size: 26px; font-weight: 900; color: var(--yellow); line-height: 1; }
.about-stat-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.about-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===== UPDATE: Slider — radius atas saja, overflow visible untuk dots ===== */
.about-activity-slider { position: relative; border-radius: var(--radius) var(--radius) 0 0; overflow: visible; margin-bottom: 0; }

/* ===== UPDATE: Track — overflow hidden + radius atas saja ===== */
.about-activity-track { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }

.about-activity-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.about-activity-slide.active { opacity: 1; }
.about-activity-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ===== UPDATE: Dots — background cream-dark agar tidak ada celah putih ===== */
.about-activity-dots { display: flex; justify-content: center; gap: 6px; padding: 5px 0; background: var(--cream-dark); }

.about-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.about-dot.active { background: var(--yellow); width: 22px; border-radius: 4px; }

.about-info-col { padding-top: 8px; }
.about-desc-block p { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; text-align: justify; }
.about-info-strip { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.about-info-item { display: flex; align-items: flex-start; gap: 12px; }
.about-info-item > i { width: 36px; height: 36px; background: var(--yellow); color: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.about-info-key { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.about-info-val { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-top: 2px; }

.about-hours-box { background: var(--black); border-radius: var(--radius); padding: 20px; margin-top: 4px; }
.about-hours-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.about-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.65); }
.about-hours-row strong { color: var(--yellow); }

/* -- Visi Misi -- */
.about-vm-section { background: var(--black); padding: 80px 0; }
.about-vm-header { text-align: center; margin-bottom: 48px; }
.about-vm-header h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; color: var(--white); text-transform: uppercase; margin-top: 8px; }
.about-vm-header h2 span { color: var(--yellow); }
.about-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-vm-card { border-radius: var(--radius); padding: 36px; border: 1px solid rgba(255,255,255,0.08); }
.about-vm-visi { background: rgba(255,255,255,0.04); }
.about-vm-misi { background: var(--yellow); }
.about-vm-icon { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--yellow); margin-bottom: 18px; }
.about-vm-misi .about-vm-icon { background: rgba(0,0,0,0.15); color: var(--black); }
.about-vm-card h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 14px; }
.about-vm-misi h3 { color: var(--black); }
.about-vm-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; }
.about-misi-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.about-misi-item i { color: var(--black); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.about-misi-item span { font-size: 13px; color: rgba(0,0,0,0.8); line-height: 1.6; font-style: italic; }

/* -- Direktur -- */
.about-director-section { padding: 80px 0; }
.about-director-grid { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }
.about-director-photo-col { display: flex; flex-direction: column; gap: 16px; }
.about-director-photo-wrap { position: relative; }
.about-director-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); display: block; }
.about-director-name-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--yellow); padding: 10px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.about-director-name { display: block; font-size: 13px; font-weight: 800; color: var(--black); }
.about-director-title { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(0,0,0,0.55); }
.about-director-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--black);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--yellow); font-size: 48px;
}
.about-director-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--black);
  border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
  transition: var(--transition);
}
.about-director-cta:hover { color: var(--yellow); }

.about-director-quote-col { padding-top: 8px; }
.about-quote-mark { font-size: 80px; color: var(--yellow); font-weight: 900; line-height: 0.7; margin-bottom: 20px; }
.about-quote-main { font-size: clamp(20px,2.5vw,28px); font-weight: 900; color: var(--black); line-height: 1.3; margin-bottom: 20px; }
.about-quote-body { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 12px; }

/* -- Org -- */
.about-org-section { padding: 80px 0; }
.about-org-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.about-org-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 10px; transition: var(--transition);
}
.about-org-card:hover { border-color: var(--yellow); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.about-org-card > i { font-size: 28px; color: var(--yellow); }
.about-org-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); }
.about-org-sub { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }

/* Lama tetap dipertahankan */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; border-top: 3px solid var(--yellow); }
.vm-card h4 { font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 12px; }
.vm-card p, .mission-list { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }
.director-card { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.director-photo { width: 120px; height: 120px; border-radius: var(--radius); object-fit: cover; margin: 0 auto; }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 20px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-card h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--black); font-weight: 600; }
.contact-card a:hover { color: var(--yellow); }

.hours-box {
  background: var(--black); border-radius: var(--radius); padding: 20px;
}
.hours-box h4 { font-size: 13px; font-weight: 700; color: var(--yellow); margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; display: flex; gap: 8px; align-items: center; }
.hours-box .hours-row { border-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); }
.hours-box .hours-row strong { color: var(--yellow); }

.map-wrap { border-radius: var(--radius); overflow: hidden; height: 280px; background: var(--gray-200); margin-bottom: 16px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--gray-400); text-align: center; }
.map-placeholder i { font-size: 36px; margin-bottom: 10px; }

.contact-action-box {
  background: var(--cream-dark); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
}
.contact-action-box h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.contact-action-box p { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }
.contact-action-btns { display: flex; flex-direction: column; gap: 10px; }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); color: var(--gray-600);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black); border-color: var(--black); color: var(--white);
}
.filter-btn.active i { color: var(--yellow); }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-name { color: var(--yellow); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 16px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-links a i { font-size: 10px; color: var(--yellow); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-contact-item i { color: var(--yellow); margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; margin-top: 40px;
  background: #ffffff;
  margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%); padding-right: calc(50vw - 50%);
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 12px; color: rgba(0,0,0,0.5);
}
.footer-bottom span { color: var(--yellow); }

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float:hover { background: #1aad52; transform: scale(1.08); }
.wa-float-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2s ease infinite; opacity: 0;
}
@keyframes pulse { 0%,100%{opacity:0;transform:scale(1)} 50%{opacity:.4;transform:scale(1.15)} }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 92px; right: 24px; z-index: 800;
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; pointer-events: none;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--yellow); color: var(--black); }

/* ===== AOS ANIMATE ===== */
.aos { opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease; }
.aos.in-view { opacity: 1; transform: none; }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }

/* ===== AUTH ===== */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 40px 20px;
}
.auth-outer {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1000px; width: 100%;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.auth-image {
  position: relative;
  background-color: var(--black);
  background-image: url('../images/slides/bagunan.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 480px;
}
.auth-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.auth-image-text {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
}
.auth-image-text .badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.auth-image-text h2 { font-size: 32px; font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.auth-image-text p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.auth-form-side { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.auth-brand-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.auth-brand-label::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--yellow); }
.auth-company-name { font-size: 22px; font-weight: 900; color: var(--black); margin-bottom: 28px; }
.auth-form-side h3 { font-size: 28px; font-weight: 900; color: var(--black); margin-bottom: 8px; }
.auth-form-side .subtitle { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.6; }
.auth-submit {
  width: 100%; padding: 14px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px;
}
.auth-submit:hover { background: var(--yellow-light); }
.auth-rate-info { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }

/* ===== AUTH FORM INPUT OVERRIDE ===== */
.auth-form-side .input-group {
  position: relative;
}

.auth-form-side .input-group .form-control {
  padding-left: 42px;
  height: 52px;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
}

.auth-form-side .input-group .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

.input-group-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray-400);
  font-size: 16px;
  z-index: 2;
  transition: var(--transition);
}

.input-group-icon:hover {
  color: var(--yellow);
}
/* ===== ADMIN LAYOUT ===== */
.admin-wrap { display: flex; min-height: 100vh; background: var(--cream); }
.admin-sidebar {
  width: 220px; background: var(--navy); min-height: 100vh;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 200;
  display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.sidebar-brand {
  padding: 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-brand .logo-name { color: var(--yellow); font-size: 14px; }
.sidebar-brand .logo-tagline { color: rgba(255,255,255,0.4); font-size: 10px; }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 16px 12px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.55);
  border-radius: var(--radius); transition: var(--transition);
  text-transform: uppercase; margin-bottom: 2px;
}
.sidebar-nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.sidebar-nav a.active { background: var(--yellow); color: var(--black); }
.sidebar-nav a i { width: 18px; text-align: center; font-size: 13px; }
.nav-section {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  padding: 14px 12px 6px;
}
.sidebar-logout {
  padding: 12px; border-top: 1px solid rgba(255,255,255,0.06);
}
.sidebar-logout a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); border-radius: var(--radius);
  transition: var(--transition); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.sidebar-logout a:hover { background: rgba(192,57,43,0.2); color: #ff6b6b; border-color: rgba(192,57,43,0.3); }

.admin-main { margin-left: 220px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 64px; background: var(--white);
  border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100;
}
.admin-topbar h2 { font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.user-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}
.admin-topbar-right span { font-size: 13px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.04em; }
.admin-topbar input[type="text"] {
  padding: 8px 16px 8px 36px; font-size: 13px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: var(--gray-100); width: 240px;
}
.admin-search-wrap { position: relative; }
.admin-search-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 13px; }

.admin-content { padding: 28px; flex: 1; }

/* ===== ADMIN CARDS ===== */
.admin-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
}
.admin-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
}
.admin-card-header h3 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--black);
  display: flex; align-items: center; gap: 8px;
}
.admin-card-body { padding: 20px; }

/* ===== STATS GRID ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  border-top: 3px solid var(--yellow); position: relative;
}
.stat-box .stat-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.stat-box i { position: absolute; top: 16px; right: 16px; font-size: 20px; color: var(--gray-300); }
.stat-box .stat-value { font-size: 32px; font-weight: 900; color: var(--black); line-height: 1; }

/* ===== QUICK ACTION BUTTONS ===== */
.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.quick-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--transition);
  border: none; cursor: pointer;
}
.quick-btn-yellow { background: var(--yellow); color: var(--black); }
.quick-btn-yellow:hover { background: var(--yellow-light); }
.quick-btn-dark { background: var(--black); color: var(--white); }
.quick-btn-dark:hover { background: var(--navy-light); }
.quick-btn-gray { background: var(--cream-dark); color: var(--black); border: 1px solid var(--gray-200); }
.quick-btn-gray:hover { border-color: var(--black); }

/* ===== ALERT ===== */
.alert {
  padding: 14px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  border: 1px solid transparent;
}
.alert i { font-size: 16px; flex-shrink: 0; }
.alert-success { background: #d1fae5; color: #065F46; border-color: #a7f3d0; }
.alert-danger  { background: #fee2e2; color: #991B1B; border-color: #fca5a5; }
.alert-warning { background: #fffbeb; color: #92400E; border-color: #fde68a; }

/* ===== TABLE ===== */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead { background: var(--black); }
thead th {
  padding: 10px 16px; text-align: left; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
thead th:first-child { color: var(--yellow); }
tbody tr { border-bottom: 1px solid var(--gray-200); transition: var(--transition); }
tbody tr:hover { background: var(--gray-100); }
tbody td { padding: 12px 16px; color: var(--gray-700); }
code { font-family: monospace; background: var(--cream-dark); padding: 2px 6px; border-radius: var(--radius-sm); font-size: 12px; color: var(--gray-600); }

/* ===== STOCK BADGES ===== */
.stock-badge {
  display: inline-block; padding: 3px 10px; font-size: 10px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.stock-empty { background: #fee2e2; color: #991B1B; }
.stock-low   { background: #fffbeb; color: #92400E; }
.stock-ok    { background: #d1fae5; color: #065F46; }

/* Status badge */
.badge-po { background: #d1fae5; color: #065F46; }
.badge-draft { background: var(--cream-dark); color: var(--gray-600); }
.badge-sent { background: #dbeafe; color: #1e40af; }
.badge-cancel { background: #fee2e2; color: #991B1B; }

/* ===== PAGE HEADER (admin) ===== */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.page-header h2 { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); display: flex; align-items: center; gap: 10px; }
.page-header h2::before { content: ''; display: inline-block; width: 4px; height: 24px; background: var(--yellow); border-radius: 2px; }

/* ===== ADMIN FOOTER ===== */
.admin-footer {
  padding: 16px 28px; border-top: 1px solid var(--gray-200);
  background: var(--white); font-size: 12px; color: var(--gray-400);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.admin-footer a { color: var(--gray-400); transition: var(--transition); }
.admin-footer a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 12px; gap: 0; }
  .navbar-menu.open { display: flex; }
  .navbar-menu li a { display: block; padding: 12px 16px; }
  .navbar-menu li a.active::after { display: none; }
  .navbar-socials { display: none; }
  .navbar-toggle { display: block; }
  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .vm-cards { grid-template-columns: 1fr; }
  .about-profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-vm-grid { grid-template-columns: 1fr; }
  .about-director-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-org-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .director-card { grid-template-columns: 1fr; }
  .auth-outer { grid-template-columns: 1fr; }
  .auth-image { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== TAMBAHAN KOMPONEN ===== */
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-sm.btn-edit {
  background: var(--white);
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-sm.btn-edit:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-sm.btn-delete {
  background: var(--white);
  color: var(--red);
  border-color: rgba(192,57,43,0.3);
}
.btn-sm.btn-delete:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
table th:last-child,
table td:last-child {
  white-space: nowrap;
  width: 1%;
}

.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--cream-dark); color: var(--black);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  transition: var(--transition);
}
.btn-download:hover { border-color: var(--black); }

.sheet-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.sheet-tab {
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  color: var(--gray-600); transition: var(--transition);
}
.sheet-tab:hover, .sheet-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }

.search-bar { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }

.status-po  { background: #d1fae5; color: #065F46; }
.status-no  { background: #fee2e2; color: #991B1B; }

/* Logo upload on admin company page */
.logo-upload-current img { max-height: 60px; max-width: 180px; object-fit: contain; }

/* Responsive admin tables */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-topbar h2 { font-size: 13px; }
  .quick-actions { flex-direction: column; }
}

/* ===== HERO CENTER (gaya UpConstruction) ===== */
.hero {
  height: 100vh;
  min-height: 640px;
  margin-top: 0;
}
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 60px;
}
.hero-center-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-center-inner .hero-badge {
  justify-content: center;
  margin-bottom: 20px;
}
.hero-center-inner h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0;
}
.hero-divider {
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 24px auto;
  border-radius: 2px;
}
.hero-center-inner .hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-center-inner .hero-buttons {
  justify-content: center;
}
/* ===== DASHBOARD FOTO KEGIATAN + STATS ===== */
.admin-card[style*="padding:0"] {
  min-height: 280px;
}

/* Pastikan card foto punya tinggi eksplisit */
.dash-photo-card {
  padding: 0 !important;
  overflow: hidden !important;
  min-height: 280px !important;
  position: relative !important;
  height: 280px;
}

.dash-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats 2x2 grid di sebelah foto */
.dash-stats-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.dash-stat-tile {
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.dash-stat-tile .num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.dash-stat-tile .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.4;
}

.dash-stat-yellow { background: var(--yellow); }
.dash-stat-yellow .num { color: var(--black); }
.dash-stat-yellow .lbl { color: var(--black); }

.dash-stat-dark { background: var(--black); }
.dash-stat-dark .num { color: var(--yellow); }
.dash-stat-dark .lbl { color: rgba(255,255,255,0.7); }

.dash-stat-light { background: #f4f4f4; }
.dash-stat-light .num { color: var(--black); }
.dash-stat-light .lbl { color: #888; }

@media (max-width: 768px) {
  .dash-photo-card { min-height: 200px; height: 200px; }
  .dash-stats-inner { grid-template-columns: 1fr 1fr; }
}
/* ===== ADMIN FORM INPUTS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

.form-control:disabled,
.form-control[readonly] {
  background: var(--gray-100);
  color: var(--gray-400);
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23757575' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

input[type="file"].form-control {
  padding: 8px 12px;
  cursor: pointer;
  background: var(--gray-100);
}

input[type="number"].form-control {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"].form-control::-webkit-inner-spin-button,
input[type="number"].form-control::-webkit-outer-spin-button {
  opacity: 1;
}

/* Row dua kolom */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Form section heading */
.form-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
  margin-top: 8px;
}

/* Hint text di bawah input */
.form-hint {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 5px;
  line-height: 1.5;
}

/* Required star */
.required {
  color: var(--red);
  margin-left: 2px;
}

/* Submit button area */
.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--gray-200);
}

/* Image preview di bawah file input */
.img-preview {
  margin-top: 8px;
  max-width: 200px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: block;
}

/* Checkbox & radio */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--yellow);
  width: 16px;
  height: 16px;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ===== CUSTOM FILE UPLOAD BUTTON ===== */
.file-upload-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  pointer-events: none;
}

.file-upload-wrap:hover .file-upload-btn {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.file-upload-name {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
  vertical-align: middle;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* ===== ACTION BUTTONS TABEL ===== */
.action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-sm.btn-edit {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-200);
}
.btn-sm.btn-edit:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-sm.btn-delete {
  background: transparent;
  color: var(--red);
  border-color: rgba(192, 57, 43, 0.25);
}
.btn-sm.btn-delete:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Kolom Aksi tidak terlalu sempit */
table th:last-child,
table td:last-child {
  white-space: nowrap;
  width: 1%;
}
/* Fix horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.hero, .ticker-wrap, .navbar {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Navbar transparan */
body:has(.hero) .navbar {
  position: fixed;
}