* {
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

body {
  margin: 0;
  background: #faf7f3;
  color: #333;
}

.custom-order-page {
  max-width: 850px;
  margin: 40px auto;
  padding: 20px;
}

/* ===== Header ===== */
.page-header {
  text-align: center;
  margin-bottom: 35px;
}

.page-header h1 {
  margin-bottom: 10px;
  font-size: 26px;
  color: #c9a44d;
}

.page-header p {
  font-size: 18px;
  color: #000000;
  line-height: 1.8;
  line-height: 1.8;
  font-weight: bold;
}

/* ===== Form ===== */
.order-form {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  resize: none;
  min-height: 100px;
}

input[type="file"] {
  padding: 8px;
  background: #fafafa;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #c9a44d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

/* ===== Contact Box ===== */
.contact-box {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  text-align: center;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

.contact-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #eee;
  transition: 0.3s;
}

.contact-item img {
  width: 22px;
  height: 22px;
}

.contact-item.whatsapp {
  color: #1f8f4a;
}

.contact-item.rubika {
  color: #7b3fe4;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .custom-order-page {
    margin: 20px auto;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-item {
    justify-content: center;
  }
}
