/* ========================================
   GLOBAL RESET & BASE
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  background: #0a0a0a;
  color: #eee;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ========================================
   HEADER
======================================== */
.header {
  border-bottom: 2px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #000;
  will-change: transform;
  transform: translateZ(0);
}

.header.shrink {
  background: #000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  font-weight: 800;
  font-size: 20px;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

@media (max-width: 768px) {
  .logo img {
    height: 32px;
  }
  .logo span {
    font-size: 16px;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.badges span {
  border: 1px solid #d4af37;
  padding: 6px 12px;
  margin: 5px;
  display: inline-block;
  font-size: 12px;
  color: #d4af37;
}

.btn {
  background: #d4af37;
  color: #000;
  padding: 14px 32px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.3s;
}

.btn:hover {
  background: #c79c2e;
}


/* ========================================
   COMPANY SECTION
======================================== */
.company-section {
  background: #000;
  padding: 100px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.company-text h2 {
  color: #d4af37;
  font-size: 44px;
  margin-bottom: 15px;
}

.company-text h3 {
  margin-top: 25px;
  font-size: 26px;
}

.company-list {
  margin-top: 15px;
  padding-left: 20px;
}

.company-list li {
  margin-bottom: 10px;
}

.btn-gold {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #d4af37;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: #111;
  border: 1px solid #d4af37;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-box h3 {
  transition: 0.3s;
}

.stat-box:hover h3 {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

/* ===============================
   LEGAL SECTION
=============================== */
.legal-section {
  background:#000;
  padding:100px 0;
  border-top:1px solid #222;
  text-align:center;
}

.legal-section h2 {
  color:#d4af37;
  font-size:38px;
  margin-bottom:10px;
}

.legal-sub {
  opacity:.7;
  margin-bottom:40px;
}

.legal-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  max-width:900px;
  margin:auto;
}

.legal-box {
  background:#111;
  border:1px solid #d4af37;
  padding:25px;
  border-radius:12px;
}

.legal-box h3 {
  color:#d4af37;
  margin-bottom:8px;
}

.legal-note {
  margin-top:40px;
  opacity:.7;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}


/* ========================================
   EXPORT MAP
======================================== */
.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.world-map {
  width: 100%;
  opacity: 0.9;
}

.shipping-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shipping-svg path {
  fill: none;
  stroke: #d4af37;
  stroke-width: 3;
  stroke-dasharray: 5;
  animation: dash 5s linear infinite;
}

@keyframes dash {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

/* ========================================
   MARKET SECTION
======================================== */
.market-section {
  background: #000;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.market-section h2 {
  color: #d4af37;
  font-size: 38px;
  margin-bottom: 12px;
}

.market-section p {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 40px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.market-box {
  background: #111;
  border: 1px solid #d4af37;
  padding: 22px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.market-box:hover {
  background: #000;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  color: #d4af37;
}


/* ===============================
   WHY CHOOSE US
=============================== */
.why-section {
  background:#000;
  padding:100px 0;
  border-top:1px solid #222;
  text-align:center;
}

.why-section h2 {
  color:#d4af37;
  font-size:38px;
  margin-bottom:10px;
}

.why-sub {
  opacity:.7;
  margin-bottom:40px;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}

.why-card {
  background:#111;
  border:1px solid #222;
  padding:25px;
  border-radius:12px;
  transition:all .3s ease;
}

.why-card h3 {
  color:#d4af37;
  margin-bottom:10px;
}

.why-card p {
  opacity:.8;
  line-height:1.6;
}

.why-card:hover {
  border-color:#d4af37;
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(212,175,55,0.3);
}


/* ========================================
   PRODUCTS
======================================== */
.products {
  background: #111;
  padding: 100px 0;
}

.products h2 {
  text-align: center;
  color: #d4af37;
  font-size: 38px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #000;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #222;
  text-align: center;
  transition: transform 0.3s;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.products-intro {
  background: #111;
  padding: 80px 0;
  text-align: center;
}

.products-intro h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.products-intro p {
  max-width: 800px;
  margin: auto;
  color: #bbb;
  font-size: 17px;
  line-height: 1.7;
}

.intro-highlight {
  margin-top: 20px;
  color: #d4af37;
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(180deg, #0d0d0d, #111);
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: auto;
}

.cta-section h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #bbb;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-outline {
  padding: 12px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
}

/* ========================================
   EXPORT TIMELINE
======================================== */
/* TIMELINE WRAPPER */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* GARIS UTAMA TIMELINE */
.timeline-wrapper .timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #fff, #d4af37);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
}

/* TIMELINE STEP */
.timeline-step {
  position: relative;
  text-align: center;
  z-index: 2;
  background: #111;
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid #d4af37;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 140px;
  margin-bottom: 30px;
}

.timeline-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

/* ICON */
.timeline-step .icon {
  font-size: 40px;
  margin-bottom: 10px;
  background: #d4af37;
  color: #000;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  transition: transform 0.3s, background 0.3s;
}

.timeline-step:hover .icon {
  transform: scale(1.2) rotate(10deg);
  background: #fff;
  color: #d4af37;
}

/* TITLE & DESCRIPTION */
.step-title {
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 5px;
}

.step-desc {
  font-size: 12px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .timeline-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .timeline-wrapper .timeline-line {
    width: 4px;
    height: 90%;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
  }

  .timeline-step {
    width: 80%;
    margin-bottom: 50px;
  }
}

.export-timeline h2 {
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 40px;
}

.export-hero {
  background: linear-gradient(180deg, #0b0b0b, #111);
  padding: 100px 0;
  text-align: center;
}

.export-hero h1 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.export-hero p {
  max-width: 800px;
  margin: auto;
  color: #bbb;
  font-size: 18px;
  line-height: 1.7;
}

.hero-highlights {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-highlights span {
  border: 1px solid #333;
  padding: 8px 18px;
  color: #d4af37;
  font-size: 14px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}


.trust-bar {
  background: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 14px;
}

.trust-item i {
  color: #d4af37;
  font-size: 16px;
}

.cta-export {
  background: linear-gradient(180deg, #111, #0b0b0b);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.cta-content h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-content p {
  max-width: 700px;
  margin: auto;
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-gold {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #b8962e;
}



/* ========================================
   FAQ
======================================== */
.faq-section {
  background: #111;
  padding: 100px 0;
}

.faq-section h2 {
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item {
  background: #000;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faq-item h3 {
  color: #d4af37;
  margin-bottom: 8px;
}

/* ========================================
   TRADE
======================================== */
.trade {
  background: #000;
  padding: 100px 0;
}

.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.trade-box {
  border: 1px solid #d4af37;
  padding: 30px;
  border-radius: 12px;
}

/* ========================================
   RFQ FORM
======================================== */
.rfq-section {
  background: #111;
  padding: 100px 10%;
  text-align: center;
}

.rfq-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.rfq-form input,
.rfq-form textarea {
  padding: 14px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.rfq-form button {
  padding: 16px;
  background: #d4af37;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.rfq-form button:hover {
  background: #c79c2e;
}

.rfq-form select {
  padding: 14px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 14px;
  appearance: none; /* remove default arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}

/* Option dropdown style */
.rfq-form option {
  background: #000;
  color: #fff;
}

.rfq-form label {
  color:#d4af37;
  font-size:13px;
  text-align:left;
}

.rfq-form select {
  padding: 14px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.rfq-form select:focus,
.rfq-form input:focus,
.rfq-form textarea:focus {
  outline:none;
  border-color:#d4af37;
  box-shadow:0 0 10px rgba(212,175,55,0.4);
}

/* ========================================
   CONTACT
======================================== */
.contact {
  background: #000;
  padding: 100px 0;
  text-align: center;
}

.contact-box {
  border: 1px solid #d4af37;
  padding: 40px;
  border-radius: 12px;
}

.hero-contact{
background:#0a0a0a;
color:#fff;
padding:100px 20px;
text-align:center;
}

.hero-badges{
margin-top:20px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
opacity:.8;
}

.trust-bar{
background:#111;
padding:40px 20px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
text-align:center;
}

.trust-item i{
font-size:28px;
color:#d4af37;
margin-bottom:10px;
}

.legal-section{
background:#0f0f0f;
color:#fff;
padding:80px 20px;
text-align:center;
}

.legal-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
}

/* ========================================
   WA
======================================== */
.wa-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Bubble text */
.wa-bubble {
  background: #000;
  color: #d4af37;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
  animation: pulseText 2s infinite;
}

/* WA button */
.wa-float {
  width: 60px;
  height: 60px;
  background: #000;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212,175,55,0.8);
  transition: 0.3s;
}

.wa-float img {
  width: 35px;
  filter: invert(1);
}

.wa-float:hover {
  background: #d4af37;
}

/* Animation */
@keyframes pulseText {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
  .wa-bubble {
    display: none;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #000;
  color: #d4af37;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-brand {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 10px;
}

.footer-box h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-box p,
.footer-box li {
  line-height: 1.6;
  color: #d4af37;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
}


/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .company-grid,
  .trade-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* TAMBAHAN */
img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   TRADE COMPLIANCE
======================================== */
.compliance {
  background: #111;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid #222;
}

.compliance h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 20px;
}

.compliance ul {
  margin-top: 25px;
  list-style: none;
}

.compliance li {
  margin-bottom: 10px;
  color: #ccc;
}

section {
  border-bottom: 1px solid #111;
}

.hero-content,
.company-section,
.products,
.market-section,
.trade,
.faq-section {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   TRUST SECTION
=============================== */
.trust-section {
  background:#000;
  padding:100px 0;
  border-top:1px solid #222;
}

.trust-section h2 {
  text-align:center;
  color:#d4af37;
  font-size:38px;
  margin-bottom:50px;
}

.trust-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.trust-box {
  background:#111;
  border:1px solid #d4af37;
  padding:25px;
  border-radius:12px;
}

.trust-box h3 {
  color:#d4af37;
  margin-bottom:10px;
}

.trust-box ul {
  padding-left:18px;
}

.trust-box li {
  margin-bottom:8px;
}

.trust-box p {
  opacity:.8;
  line-height:1.6;
}


/* ===============================
   DOCS SECTION
=============================== */
.docs-section {
  background:#111;
  padding:100px 0;
  text-align:center;
}

.docs-section h2 {
  color:#d4af37;
  font-size:36px;
}

.docs-sub {
  opacity:.7;
  margin-bottom:40px;
}

.docs-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  max-width:900px;
  margin:auto;
}

.doc-card {
  background:#000;
  border:1px solid #d4af37;
  padding:20px;
  border-radius:10px;
  font-weight:600;
}


/* ===============================
   WHY SECTION
=============================== */
.why-section {
  background:#000;
  padding:100px 0;
}

.why-section h2 {
  text-align:center;
  color:#d4af37;
  font-size:36px;
  margin-bottom:40px;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.why-card {
  background:#111;
  border:1px solid #222;
  padding:20px;
  border-radius:10px;
  text-align:center;
  font-weight:600;
  transition:.3s;
}

.why-card:hover {
  border-color:#d4af37;
  box-shadow:0 0 20px rgba(212,175,55,0.4);
}
