/* ================= ORDER SECTION ================= */
.order {
  position: relative;
  background:
    linear-gradient(
      180deg,
      #f9fbfa 0%,
      #f2f6f4 50%,
      #ffffff 100%
    );
}

.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(143, 179, 184, 0.28),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(200, 190, 150, 0.18),
      transparent 55%
    );
  z-index: 0;
}

.order > * {
  position: relative;
  z-index: 1;
}

.social a {
  font-size: 15px;
  color: #333;
  margin-right: 15px;
  text-decoration: none;
}

.social a:hover {
  color: #1da1f2; /* bisa disesuaikan */
}




.order h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 500;
  margin-bottom: 40px;
  color: #2f3e3e;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 180px;
  text-shadow: 0 6px 18px rgba(143,179,184,0.25);
}

.order-desc {
  max-width: 520px;
  margin: 0 auto 56px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* ================= STEPS GRID ================= */
.order-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.order-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(248,250,249,0.92)
    );
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 36px 28px;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  border: 1px solid rgba(143,179,184,0.15);
}

.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.order-card .step {
  font-size: 42px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    #a7bfc0,
    #6f8f8c
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.order-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.order-card p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

/* ================= CTA ================= */
.order-cta {
  margin-top: 56px;
  text-align: center;
}

.btn-order {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #6b8572,
      #4f644f
    );
  box-shadow:
    0 10px 24px rgba(95,115,95,0.35);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
}

.btn-order:hover {
  background:
    linear-gradient(
      135deg,
      #7c9683,
      #5a725a
    );
    
  transform: translateY(-2px);
}

/* ================= DESKTOP ================= */
@media (min-width: 1024px) {
  .order-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

body.order-page #navbar {
  backdrop-filter: blur(10px);
  background: rgba(143, 179, 184, 0.247);
}
