/* background + desktop width 1320 */
.honarjoo-bg{
  width:100%;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(182,152,92,.20), rgba(0,0,0,0) 60%),
    radial-gradient(900px 420px at 10% 110%, rgba(182,152,92,.14), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, rgba(11,17,14,.92), rgba(9,14,11,.92));
  border-top:1px solid rgba(182,152,92,.14);
  border-bottom:1px solid rgba(182,152,92,.14);
  padding:10px 0;
}

.honarjoo-wrap{
  max-width:1320px;
  margin:0 auto;
  padding:34px 20px;
  box-sizing:border-box;
  font-family:'IRANSansX',sans-serif;
  direction:rtl;
  color:#fff;
}

/* errors */
.honarjoo-errors{
  background:#fff;
  color:#b30000;
  border-left:4px solid #d33;
  padding:12px 14px;
  border-radius:10px;
  margin-bottom:16px;
}
.honarjoo-errors ul{ margin:0; padding-right:18px; }

/* form */
.honarjoo-form{ display:flex; flex-direction:column; gap:18px; }
.honarjoo-section{ }
.honarjoo-section-title{
  font-weight:950;
  margin-bottom:10px;
  font-size:18px;
}

/* inputs */
.honarjoo-input, textarea.honarjoo-input{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:rgba(255,255,255,.92);
  padding:11px 14px;
  outline:none;
  box-sizing:border-box;
}
textarea.honarjoo-input{ min-height:72px; resize:vertical; }

/* package stickers - NEW sizing */
.honarjoo-package-grid{
  display:grid;
  /* دسکتاپ: 3 کارت در هر ردیف */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}

/* کارت پکیج خیلی کوچکتر */
.honarjoo-sticker{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  border-radius:14px;

  padding:10px 8px;      /* قبلاً 16px */
  min-height:64px;      /* قبلاً 86px */
  transition:.18s;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  user-select:none;
  box-sizing:border-box;
}

.honarjoo-sticker.is-selected{
  border-color:rgba(182,152,92,.8);
  box-shadow:0 0 0 2px rgba(182,152,92,.7);
}

.honarjoo-sticker:hover{
  transform:translateY(-1px);
  border-color:rgba(182,152,92,.55);
}

/* متن کارت پکیج کوچک‌تر */
.honarjoo-sticker-text{
  font-weight:950;
  font-size:14px;       /* قبلاً 16 */
  line-height:1.3;
}

/* layout */
.honarjoo-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.honarjoo-fields-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.honarjoo-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.honarjoo-label{
  color:#fff;
  font-weight:950;
  font-size:14px;
}

/* insurance */
.honarjoo-insurance-card{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  border-radius:16px;
  padding:14px;
}
.honarjoo-insurance-text{
  line-height:1.8;
  font-weight:800;
  color:rgba(230,236,232,.92);
}
.honarjoo-insurance-text a{
  color:#b6985c;
  font-weight:950;
  text-decoration:none;
}
.honarjoo-insurance-text a:hover{
  text-decoration:underline;
}
.honarjoo-checkbox-line{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
  color:#fff;
  font-weight:900;
}

/* submit */
.honarjoo-submit, .honarjoo-submit-btn{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(182,152,92,.35);
  background:#b6985c;
  color:#0b0b0b;
  padding:12px 14px;
  font-weight:950;
  cursor:pointer;
  font-size:16px;
}
.honarjoo-submit:hover{ background:#caa667; }

/* profile table */
.honarjoo-profile-table-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:10px 18px;
}

.honarjoo-profile-table{
  width:100%;
  border-collapse:collapse;
}
.honarjoo-profile-table th,
.honarjoo-profile-table td{
  border:1px solid #ddd;
  padding:10px;
  text-align:right;
  background:#fff;
  color:#111;
  vertical-align:top;
}
.honarjoo-profile-table th{
  width:35%;
  font-weight:900;
}

/* responsive */
@media(max-width: 1100px){
  /* در تبلت و نزدیک دسکتاپ: 2 ردیف */
  .honarjoo-package-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width: 900px){
  .honarjoo-two-col{ grid-template-columns:1fr; }
  .honarjoo-fields-grid{ grid-template-columns:1fr; }
  .honarjoo-wrap{ padding:26px 14px; }
  /* موبایل: کوچکتر و 1 ردیف */
  .honarjoo-package-grid{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap:8px;
  }
  .honarjoo-sticker{
    min-height:58px;
    padding:10px 8px;
    border-radius:12px;
  }
  .honarjoo-sticker-text{
    font-size:13.5px;
  }
}