* {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
header.hero {
  background: linear-gradient(rgba(48, 171, 225, 0.75), rgba(48, 171, 225, 0.75)), url('https://images.unsplash.com/photo-1581578731547-07e3f5e7b7e5?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px; /* Dikurangi sedikit untuk fokus pada konten */
  position: relative;
}
header.hero h1 {
  font-size: 3.5em;
  margin: 0 0 10px;
  font-weight: 600;
}
header.hero .tagline {
  font-size: 1.3em;
  margin: 0 0 20px;
  opacity: 0.95;
  font-style: italic;
}
header.hero .product-desc {
  font-size: 1.1em;
  margin: 0 0 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
header.hero .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #30abe1, #2c3e50);
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
header.hero .cta-button:hover {
  background: linear-gradient(135deg, #2c3e50, #30abe1);
  transform: translateY(-2px);
}
nav {
  background: #2c3e50;
  padding: 15px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #30abe1;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
section {
  margin-bottom: 80px;
}
h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2c3e50;
}
h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.card i {
  font-size: 3em;
  color: #30abe1;
  margin-bottom: 15px;
}
.card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}
form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}
input, select, textarea, button {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1em;
  box-sizing: border-box;
}
button {
  background: linear-gradient(135deg, #30abe1, #2c3e50);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: linear-gradient(135deg, #2c3e50, #30abe1);
}
.order-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.order-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.order-step {
  position: relative;
  margin: 30px 0;
  padding: 20px;
  padding-left: 70px; /* Ruang untuk lingkaran + teks */
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.order-step::before {
  content: '';
  position: absolute;
  left: 18px; /* Tengah garis */
  top: 25px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddd;
  border: 3px solid white; /* Border untuk clarity */
  z-index: 1;
}
.order-step h4 {
  margin: 0 0 10px;
  color: #30abe1;
  font-size: 1.2em;
}
.order-step h4 i {
  margin-right: 8px; /* Jarak ikon dengan nomor/teks */
  color: #30abe1;
  font-size: 1em;
}
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.payment-card {
  background: white;
  padding: 30px; /* Padding lebih besar */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}
.payment-card:hover {
  transform: translateY(-5px);
}
.payment-card i {
  font-size: 2.5em;
  color: #30abe1;
  margin-bottom: 20px; /* Jarak lebih dengan teks di bawah */
  display: block; /* Pastikan inline-block tidak nabrak */
}
.tracking-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.status-step {
  position: relative;
  margin: 20px 0;
  padding-left: 50px;
  padding: 15px
