/* ==========================================
   VARIABLE & PALET WARNA (DARI LOGO)
   ========================================== */
:root {
  --green-hino: #95E008;       /* Hijau Neon/Chartreuse logo */
  --green-dark: #76B300;
  --blue-brand: #0033FF;       /* Biru Elektrik logo */
  --blue-dark: #0022D6;
  --dark-bg: #111111;          /* Hitam utama */
  --dark-card: #1C1C1E;        /* Dark Slate untuk Card */
  --light-bg: #F8FAFC;         /* Off-white */
  --light-card: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #9CA3AF;
  --text-white: #FFFFFF;
  --border-color: #27272A;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* RESET BASIK */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* UTILITY LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-dark {
  background-color: var(--dark-bg);
  color: var(--text-white);
}

.bg-light {
  background-color: var(--light-bg);
  color: var(--text-main);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .service-wide { grid-column: span 2; }
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

.highlight-green {
  color: var(--green-hino);
}

.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-green {
  background-color: var(--green-hino);
  color: #000000;
}

.btn-green:hover {
  background-color: var(--green-dark);
}

.btn-blue {
  background-color: var(--blue-brand);
  color: var(--text-white);
}

.btn-blue:hover {
  background-color: var(--blue-dark);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box {
  width: 40px;
  height: 40px;
  background-color: var(--blue-brand);
  color: var(--text-white);
  font-weight: 900;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--green-hino);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.btn-header {
  display: none;
}

@media (min-width: 900px) {
  .nav-menu { display: flex; }
  .menu-toggle { display: none; }
  .btn-header { display: inline-flex; }
  h1 { font-size: 3rem; }
}

/* MOBILE NAV OPEN STATE */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
}

/* HERO SECTION */
.hero {
  padding: 60px 0;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1F2937;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--green-hino);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #374151;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-hino);
  border-radius: 50%;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  color: var(--text-white);
  font-size: 1.75rem;
}

.stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.image-card {
  background-color: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* CARDS */
.card {
  background-color: var(--light-card);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #E5E7EB;
}

.bg-dark .card {
  background-color: var(--dark-card);
  border-color: var(--border-color);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.icon-blue {
  background-color: rgba(0, 51, 255, 0.15);
  color: var(--blue-brand);
}

.icon-green {
  background-color: rgba(149, 224, 8, 0.15);
  color: var(--green-hino);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #4B5563;
  font-size: 0.95rem;
}

.service-card h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.link-green {
  color: var(--green-hino);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.link-green:hover {
  text-decoration: underline;
}

/* CHECKLIST & ABOUT */
.checklist {
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.checklist i {
  color: var(--green-hino);
  font-size: 1.1rem;
}

.info-card {
  background-color: var(--light-card);
  border-left: 4px solid var(--blue-brand);
}

.info-card hr {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid #E5E7EB;
}

/* KONTAK BUTTONS */
.social-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-white);
  font-weight: 700;
  transition: opacity 0.2s;
}

.social-btn:hover {
  opacity: 0.9;
}

.social-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-wa { background-color: var(--green-hino); color: #000; }
.btn-ig { background-color: var(--blue-brand); }
.btn-tt { background-color: #27272A; }
.btn-fb { background-color: #1877F2; }
.btn-gmaps { background-color: #1e4e10; }

/* FOOTER */
.footer {
  padding: 24px 0;
  background-color: #09090B;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: #6B7280;
  font-size: 0.85rem;
}

/* ==========================================
   GALERI SWIPER SLIDER
   ========================================== */
.galeriSwiper {
  width: 100%;
  padding-bottom: 50px; /* Ruang untuk titik pagination */
}

.galeriSwiper .swiper-slide {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.galeriSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover; /* Agar gambar tidak gepeng */
}

/* Warna tombol panah */
.swiper-button-next, 
.swiper-button-prev {
  color: var(--green-hino) !important;
}

/* Warna titik (pagination) */
.swiper-pagination-bullet-active {
  background-color: var(--green-hino) !important;
}