/* =========================================
   STYLE.CSS - FIX ANIMATION VERSION
   Perbaikan: Header Fixed Stabil, Animasi hanya pada Konten
   ========================================= */

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  /* BACKGROUND */
  background: linear-gradient(180deg, #ffffff, #f4f4f4);
  color: #203444;
  line-height: 1.6;

  /* STICKY FOOTER SETUP */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  
  /* PENTING: Padding ini agar konten tidak tertutup Header */
  /* Diubah ke 70px agar pas dengan tinggi header, mencegah celah default */
  padding-top: 70px;

  /* CATATAN: Animasi dihapus dari sini agar Header tidak ikut turun/goyang */
}

/* ===== NAVBAR (FIXED + GLASS ANIMATION) ===== */
header {
  position: fixed; /* Header menempel di layar */
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  
  /* Warna Awal (Solid) */
  background: rgba(40, 43, 51, 1);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  
  display: flex;
  align-items: center;
  
  transition: all 0.4s ease;
}

/* EFEK SAAT SCROLL */
header.scrolled {
  background: rgba(40, 43, 51, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
}

/* LOGO MELAYANG */
.logo-area {
  position: absolute;
  top: -5px;           
  left: 15;              
  z-index: 101;        
}

.logo-area img {
  height: 55px;
  width: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); 
}

/* EFEK LOGO SAAT SCROLL */
header.scrolled .logo-area img {
  height: 40px;
  transform: translateY(5px); 
}

/* MENU DIGESER KE KANAN */
.nav-right {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-right a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-right a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== MAIN CONTAINER (ANIMASI DIPINDAH KESINI) ===== */
main.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  width: 100%;
  flex: 1;
  
  /* Initial State Animasi */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ===== TITLE ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  background: none;
  color: #282b33;
}

/* ===== PRODUCT GRID ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}

@media (max-width: 1000px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products { grid-template-columns: 1fr; }
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  backdrop-filter: blur(6px);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  padding: 8px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #282b33;
}

.product-card .desc {
  font-size: 14px;
  color: #4c6170;
  margin-bottom: 12px;
}

.product-card .price {
  font-weight: 800;
  color: #282b33;
  font-size: 16px;
  margin-bottom: 2px;
}

.btn-buy {
  margin-top: auto;
  background: #282b33;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(40, 43, 51, 0.3);
}

.btn-buy:hover {
  transform: translateY(-3px);
  background: #000000;
  box-shadow: 0 12px 26px rgba(40, 43, 51, 0.4);
}

/* ===== FOOTER (ANIMASI & STYLING) ===== */
footer {
  position: relative;
  background: #282b33;
  text-align: center;
  padding: 30px 15px 30px;
  color: white;
  width: 100%;
  margin-top: 40px;

  /* Setup Animasi Load & Reveal */
  opacity: 0;
  transform: translateY(20px); /* Awalnya turun dikit */
  transition: all 0.8s ease-out;
}

/* TRIGGER ANIMASI SAAT PAGE LOADED */
/* Ketika JS menambahkan class .page-loaded ke body, maka main & footer muncul */
body.page-loaded main.container,
body.page-loaded footer {
  opacity: 1;
  transform: translateY(0);
}

footer p {
  margin: 0;
  font-weight: 600;
}

/* === Auth Forms (Login & Register) === */
.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #282b33;
}

.auth-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-container input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-container input:focus {
  border-color: #282b33;
  box-shadow: 0 0 8px rgba(40, 43, 51, 0.3);
}

.auth-container button {
  padding: 12px;
  background: #282b33;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-container button:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow: 0 6px 14px rgba(40, 43, 51, 0.4);
}

.auth-container p {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.auth-container a {
  color: #282b33;
  font-weight: bold;
  text-decoration: none;
}

.auth-container a:hover {
  text-decoration: underline;
}

/* General page container */
.page-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #282b33;
    outline: none;
    box-shadow: 0 0 6px rgba(40, 43, 51, 0.3);
}

.contact-form button {
    padding: 12px;
    background: #282b33;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #000000;
}

/* Contact Info */
.contact-info {
    margin-top: 25px;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

/* About Section */
.about-section {
    margin: 30px 0;
    text-align: center;
}

.about-section h3 {
    color: #282b33;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.about-section ul li {
    background: url('assets/images/logo.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin: 10px 0;
    font-size: 16px;
}

/* Grid Keunggulan */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-card {
    background: #282b33;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.dashboard-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.dashboard-links a {
    background: #282b33;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.dashboard-links a:hover {
    background: #000000;
}

/* ===== Payment Page ===== */
.payment-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.payment-container h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #282b33;
}

.payment-container p {
  font-size: 16px;
  margin: 10px 0;
  color: #555;
}

.payment-container strong {
  color: #282b33;
  font-size: 18px;
}

.payment-container img {
  margin: 20px auto;
  display: block;
  border: 2px solid #eee;
  border-radius: 8px;
}

.payment-container a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background-color: #282b33;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.payment-container a:hover {
  background-color: #000000;
}

/* ===== Payment Confirm Page ===== */
.payment-confirm-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.payment-confirm-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #282b33;
  text-align: center;
}

.payment-confirm-container label1 {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}

.payment-confirm-container label2 {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}

.payment-confirm-container input[type="file"] {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.payment-confirm-container input[type="url"] {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.payment-confirm-container button {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background-color: #282b33;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.payment-confirm-container button:hover {
  background-color: #000000;
}

.payment-confirm-container p {
  margin-top: 15px;
  font-size: 15px;
  text-align: center;
}

.payment-confirm-container p.error {
  color: #d9534f;
  font-weight: bold;
}

.payment-confirm-container p.success {
  color: #28a745;
  font-weight: bold;
}

/* ===== Order History ===== */
.order-history-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.order-history-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #282b33;
  text-align: center;
}

.user-admin-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #282b33;
  text-align: center;
}

.order-admin-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #282b33;
  text-align: center;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.order-table th, .order-table td {
  padding: 12px 20px;
  border: 1px solid #ddd;
  text-align: center;
}

.order-table th {
  background-color: #282b33;
  color: #fff;
}

.order-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.order-table tr:hover {
  background-color: #f1f7ff;
}

.btn-action {
  display: inline-block;
  padding: 6px 12px;
  background: #282b33;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-action:hover {
  background: #000000;
}

/* Status badge */
.status-badge {
  display: inline-block;      
  font-size: 12px;            
  font-weight: bold;
  line-height: 1.2;            
  color: #fff;
  background-color: gray;      
}

.status-badge.pending {
  background-color: #ff0707; /* merah/pending */
  color: #fff;
  padding: 7px 10px;           
  border-radius: 12px;        
}

.status-badge.success {
  background-color: #28a745; /* hijau/success */
  color: #fff;
  padding: 10px 10px;          
  border-radius: 12px;        
}

/* Thumbnail bukti pembayaran */
.proof-thumb {
  max-width: 80px;
  max-height: 80px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 3px;
  background: #fff;
}

.admin-dashboard .stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.admin-dashboard .card {
  flex: 1;
  padding: 15px;
  background: #f1f7ff;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #333;
}
.success {
  color: #28a745;
  font-weight: bold;
}

.rate-limit-error {
  max-width: 500px;
  margin: 80px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.rate-limit-error h1 {
  font-size: 22px;
  color: #dc3545; 
  margin-bottom: 15px;
}

.rate-limit-error p {
  font-size: 16px;
  color: #555;
}

/* Admin Dashboard Styling */
.admin-dashboard {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.admin-dashboard h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #282b33;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
}

.stats .card {
  flex: 1 1 200px;
  background: #282b33;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-action {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #282b33;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-action:hover {
  background: #000000;
  transform: translateY(-3px);
}

/* ===== Layout umum ===== */
h2 {
    text-align: center;
    margin: 20px 0;
    color: #282b33;
}

/* ===== Notifikasi ===== */
.notice {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px auto;
    width: 90%;
    max-width: 800px;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px auto;
    width: 90%;
    max-width: 800px;
}

/* ===== Form Produk ===== */
form {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

form label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="number"],
form input[type="file"],
form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #282b33;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

form button:hover {
    background: #000000;
}

/* Google Maps link input styling */
.gmap-input {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    color: #0a3d62;
    background: #f9f9f9;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gmap-input::placeholder {
    color: #6f8ea8;
    font-weight: 500;
}

.gmap-input:focus {
    outline: none;
    border-color: #282b33;
    box-shadow: 0 0 0 3px rgba(40, 43, 51, 0.25);
}

/* ===== Tabel Produk ===== */
table {
    border-collapse: collapse;
    width: 95%;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background: #282b33;
    color: white;
    padding: 12px;
    text-align: center;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

table tr:nth-child(even) {
    background: #f9f9f9;
}

table img {
    border-radius: 4px;
}

/* ===== Aksi tombol ===== */
table a {
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

table a[href*="edit"] {
    background: #ffc107;
    color: #212529;
}

table a[href*="delete"] {
    background: #dc3545;
    color: white;
}

table a:hover {
    opacity: 0.85;
}

.buy-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.qty-input {
    width: 60px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Notifikasi Alert (CSS Utama) */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
}
.alert-success { background: #28a745; }
.alert-error { background: #dc3545; }
.alert-warning { background: #ffc107; color: #333; }

/* =========================================
   ABOUT PAGE STYLING (NEW)
   ========================================= */

/* 1. Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #282b33;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content .highlight {
    color: #d68910; /* Warna kayu/emas */
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.badge-pill {
    background: #e9ecef;
    color: #282b33;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(40, 43, 51, 0.1); /* Efek bayangan kotak */
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* 2. Vision & Mission (Side by Side Cards) */
.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Misi lebih lebar */
    gap: 30px;
}

.vm-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.vm-card.mission {
    background: #282b33; /* Dark Theme untuk Misi */
    color: #fff;
}

.vm-card.mission h3, 
.vm-card.mission li {
    color: #fff;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.vm-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745; /* Centang hijau */
}

/* 3. Features Grid */
.features-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: #fdfdfd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.f-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: #f4f4f4;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 50px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #282b33;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* 4. CTA Section */
.cta-section {
    background: linear-gradient(135deg, #282b33, #1a1c22);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 0; /* Full width feel */
    margin-top: 50px;
    border-radius: 16px;
    
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Buttons */
.btn-primary {
    background: #282b33;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #282b33;
}

/* Responsive */
@media (max-width: 900px) {
    .about-hero { flex-direction: column-reverse; text-align: center; }
    .vision-mission-container { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-image img { box-shadow: none; margin-bottom: 20px; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
}

/* =========================================
   HOMEPAGE SLIDER & SECTIONS
   ========================================= */

/* 1. HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Tinggi slider */
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Efek fade halus */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay Hitam Transparan agar teks terbaca */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.slide.active {
    opacity: 1; /* Hanya slide aktif yang muncul */
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    animation: slideUp 1s ease-out; /* Animasi teks naik */
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content .highlight {
    color: #f1c40f; /* Warna Emas */
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
}

.btn-slide {
    display: inline-block;
    padding: 15px 35px;
    background: #f1c40f;
    color: #282b33;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-slide:hover {
    background: #fff;
    transform: scale(1.05);
}

/* 2. INFO BANNER (Berita/Info) */
.info-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: -50px; /* Efek menumpuk di atas slider */
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.info-icon {
    font-size: 32px;
    background: #f4f8fb;
    padding: 15px;
    border-radius: 50%;
}

.info-text h4 {
    margin: 0;
    color: #282b33;
    font-size: 18px;
}

.info-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* 3. SECTION HEADER TAMBAHAN */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.section-subtitle {
    color: #666;
    margin-top: -20px;
}

/* Cari class .more-products dan ubah nilainya */
.more-products {
    text-align: center;
    
    /* INI KUNCINYA: Tambah margin-top agar berjarak dari produk */
    margin-top: 100px; 
    
    /* Opsional: Tambah jarak bawah juga biar ga nempel footer */
    margin-bottom: 25px; 
}

.btn-outline-dark {
    border: 2px solid #282b33;
    padding: 10px 25px;
    text-decoration: none;
    color: #282b33;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: #282b33;
    color: #fff;
}

/* Responsive Slider */
/* =========================================
   REVISI SLIDER & INFO (Boxed + Rounded + Spacing)
   ========================================= */

/* 1. HERO SLIDER */
.hero-slider {
    position: relative;
    /* Agar slider tidak full layar dan bisa rounded */
    width: 95%; 
    max-width: 1200px; 
    margin: 20px auto; /* Posisi tengah dan ada jarak atas */
    
    height: 557px; 
    overflow: hidden; /* PENTING: Agar gambar tidak bocor keluar sudut */
    background: #000;
    
    /* MEMBUAT SUDUT BUNDER (ROUNDED) */
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Bayangan biar elegan */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Efek Fade Halus */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay Hitam Transparan */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.slide.active {
    opacity: 1; 
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 2. INFO BANNER (Diberi Jarak) */
.info-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 20px;
    background: #fff;
    
    /* MEMBERI JARAK DARI SLIDER (Tidak nempel lagi) */
    margin-top: 30px; 
    margin-bottom: 50px;
    
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Sisa CSS (Button, Icon, dll) tetap sama seperti sebelumnya */
.slide-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.slide-content .highlight { color: #f1c40f; }
.slide-content p { font-size: 18px; margin-bottom: 30px; color: #ddd; }
.btn-slide { display: inline-block; padding: 12px 30px; background: #f1c40f; color: #282b33; font-weight: 800; text-decoration: none; border-radius: 50px; transition: 0.3s; }
.btn-slide:hover { background: #fff; transform: scale(1.05); }

.info-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 250px; padding: 10px; }
.info-icon { font-size: 32px; background: #f4f8fb; padding: 15px; border-radius: 50%; }
.info-text h4 { margin: 0; color: #282b33; font-size: 18px; }
.info-text p { margin: 5px 0 0; font-size: 14px; color: #666; }

/* =========================================
   SCROLL REVEAL ANIMATION
   ========================================= */

/* 1. Kondisi Awal (Sebelum muncul) */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* Turun 50px ke bawah */
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); /* Gerakan halus */
}

/* 2. Kondisi Aktif (Saat terlihat di layar) */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Kembali ke posisi asal */
}

/* 3. Efek Bergantian (Staggered Delay) */
/* Agar item tidak muncul barengan, tapi satu per satu */

/* Untuk Produk Card */
.products .product-card:nth-child(1) { transition-delay: 0.1s; }
.products .product-card:nth-child(2) { transition-delay: 0.2s; }
.products .product-card:nth-child(3) { transition-delay: 0.3s; }
.products .product-card:nth-child(4) { transition-delay: 0.1s; }
.products .product-card:nth-child(5) { transition-delay: 0.2s; }
.products .product-card:nth-child(6) { transition-delay: 0.3s; }

/* Untuk Info Banner */
.info-item:nth-child(1) { transition-delay: 0.1s; }
.info-item:nth-child(2) { transition-delay: 0.3s; }
.info-item:nth-child(3) { transition-delay: 0.5s; }

/* =========================================
   FORCE HIDE SCROLLBAR (ALL BROWSERS)
   ========================================= */

/* 1. Untuk Chrome, Safari, Edge, Opera */
html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none !important; /* Pakai !important biar maksa */
    width: 0 !important;
    background: transparent !important;
}

/* 2. Untuk Firefox */
html, body {
    scrollbar-width: none !important;
}

/* 3. Untuk IE 10+ */
html, body {
    -ms-overflow-style: none !important;
}