﻿/* ===========================
   TOKO PLASTIK - MAIN STYLES
   =========================== */
:root {
  --orange: #FF6B00;
  --orange-dark: #E05A00;
  --orange-light: #FF8C3A;
  --orange-pale: #FFF3E8;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-medium: #E5E5E5;
  --gray-dark: #333333;
  --gray-text: #666666;
  --gray-muted: #999999;
  --green: #25D366;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-orange: 0 8px 30px rgba(255,107,0,0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --font: 'Inter', sans-serif;
}

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

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-medium);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 18px; font-weight: 700; color: var(--gray-dark); }
.logo-accent { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--gray-dark); transition: var(--transition); }
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }
.nav-wa-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  background: var(--green); color: white;
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.nav-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,140,58,0.1) 0%, transparent 50%);
}
.hero-container {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  flex: 1; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.75);
  margin-bottom: 30px; line-height: 1.7;
  animation: fadeInUp 0.8s ease;
}
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 24px; font-weight: 800; color: var(--orange-light); }
.stat-item span { font-size: 13px; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeInUp 1s ease; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-size: 16px; font-weight: 700;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  color: white; font-size: 15px; font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.hero-image { position: relative; animation: fadeInRight 0.8s ease; }
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-img-wrapper img { width: 100%; object-fit: cover; aspect-ratio: 5/4; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.badge-icon { font-size: 24px; }
.hero-img-badge strong { display: block; font-size: 13px; color: var(--gray-dark); }
.hero-img-badge small { font-size: 11px; color: var(--gray-text); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; }
/* SECTION COMMONS */
.section-container { max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: var(--orange-pale); color: var(--orange);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--gray-dark); margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--gray-text); max-width: 560px; margin: 0 auto; }

/* FEATURES */
.features { background: var(--gray-light); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.feature-icon {
  width: 70px; height: 70px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-dark); }
.feature-card p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* CATEGORIES */
.categories { background: white; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.cat-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-info { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.cat-info h3 { font-size: 15px; font-weight: 700; color: var(--gray-dark); }
.cat-wa-btn {
  padding: 7px 16px; border-radius: 50px;
  background: var(--orange-pale); color: var(--orange);
  font-size: 13px; font-weight: 600;
  transition: var(--transition);
}
.cat-wa-btn:hover { background: var(--orange); color: white; }

/* PRODUCTS */
.products { background: var(--gray-light); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-medium);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.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.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-name { font-size: 15px; font-weight: 700; color: var(--gray-dark); }
.product-size { font-size: 12px; color: var(--gray-text); }
.product-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; flex: 1; }
.product-price { display: flex; align-items: baseline; gap: 4px; margin-top: 4px; }
.price-label { font-size: 11px; color: var(--gray-muted); }
.price { font-size: 18px; font-weight: 800; color: var(--orange); }
.price-unit { font-size: 12px; color: var(--gray-text); }
.btn-wa-product {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-size: 13px; font-weight: 700;
  transition: var(--transition); margin-top: 4px;
}
.btn-wa-product:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }
/* TESTIMONIALS */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--gray-light);
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--orange-light); }
.testi-stars { font-size: 18px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-text::before { content: '"'; font-size: 24px; color: var(--orange); font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-dark); }
.testi-info span { font-size: 12px; color: var(--gray-text); }

/* HOW TO BUY */
.how-to-buy { background: var(--gray-light); }
.steps-container {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
}
.step-item {
  flex: 1; min-width: 160px; max-width: 220px;
  text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); position: relative;
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: white;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 40px; margin-bottom: 16px; margin-top: 8px; }
.step-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gray-dark); }
.step-item p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--orange); font-weight: 300; align-self: center; flex-shrink: 0; }
.steps-cta { text-align: center; }

/* FAQ */
.faq { background: white; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  font-size: 15px; font-weight: 600; color: var(--gray-dark);
  text-align: left; transition: var(--transition); background: white;
}
.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--gray-text); line-height: 1.8; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C3A 50%, #E05A00 100%);
  position: relative; overflow: hidden;
}
.cta-container {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 24px; position: relative; z-index: 1;
}
.cta-content { text-align: center; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 44px; border-radius: 50px;
  background: white; color: var(--orange);
  font-size: 18px; font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.cta-info { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.cta-info span { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }
.cta-decoration { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-circle-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
.cta-circle-2 { width: 200px; height: 200px; bottom: -60px; left: -60px; }
.cta-circle-3 { width: 150px; height: 150px; top: 50%; right: 15%; transform: translateY(-50%); }
/* FOOTER */
.footer { background: #111111; color: white; }
.footer-main { padding: 60px 0; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-main { color: white; }
.footer-logo .logo-accent { color: var(--orange); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: var(--green); color: white;
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.footer-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.footer-links h4, .footer-products h4, .footer-contact h4 {
  font-size: 14px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.footer-links ul li, .footer-products ul li {
  margin-bottom: 10px;
}
.footer-links ul li a, .footer-products ul li a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links ul li a:hover, .footer-products ul li a:hover { color: var(--orange); padding-left: 4px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6;
}
.contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .footer-container {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 0; padding-bottom: 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom p:last-child { text-align: right; }

/* FLOAT WA BUTTON */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white; z-index: 999;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
.float-wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--green); opacity: 0.4;
  animation: pulse 2s infinite;
}
.float-wa-label {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--gray-dark); color: white;
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.float-wa:hover .float-wa-label { opacity: 1; }

/* ANIMATIONS */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 16px; border-top: 1px solid var(--gray-medium); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .hero-image { display: none; }
  .hero-title { font-size: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .footer-container { grid-template-columns: 1fr; }
  .footer-bottom p:last-child { text-align: left; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-info { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .section-container { padding: 60px 16px; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
