/* ===========================
   افزونه نمایش سازمان‌های طرف قرارداد
   نسخه نهایی با استایل مینیمال لوکس صورتی-طلایی
   Zahra Design × Mohammad AI
=========================== */

/* Wrapper اصلی */
.contract-org-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  padding: 40px 20px;
  background: linear-gradient(180deg, #fafaf8, #f6f3ed);
  border-radius: 38px;
}

/* کارت سازمان */
.contract-org-card {
  position: relative;
  flex: 1 1 calc(25% - 26px);
  max-width: calc(25% - 26px);
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  min-height: 440px; /* تنظیم ارتفاع دقیق برای ۴ ردیف یکنواخت */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.contract-org-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 33px rgba(0, 0, 0, 0.18);
}

/* لوگو سازمان */
.contract-org-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 18px;
  margin: 30px auto 0;
  display: block;
  transition: all 0.3s ease;
}

/* عنوان سازمان */
.contract-org-title {
  font-family: "Vazirmatn", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-top: 12px;
  margin-bottom: 10px;
  line-height: 1.6;
  z-index: 2;
}

/* دکمه مشاهده شرایط */
.contract-org-button {
  background: #d6b067;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 11px 18px;
  margin: 12px auto 26px;
  width: fit-content;
  cursor: pointer;
  font-size: 13.5px;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 3px 6px rgba(214,176,103,0.3);
}
.contract-org-button:hover {
  background: #e9c37a;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(233,195,122,0.3);
}

/* جزئیات شرایط اقساطی */
.contract-org-details {
  display: none;
  background: #faf8f4;
  border-top: 1px solid #eee;
  border-radius: 22px 22px 0 0;
  padding: 34px 24px 26px;
  text-align: right;
  line-height: 2;
  font-size: 13.2px;
  font-family: "Vazirmatn", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -5px 14px rgba(0,0,0,0.07);
  animation: slideUp 0.45s ease;
  direction: rtl;
  z-index: 9999;
}

/* دکمه ضربدر بستن */
.contract-org-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #b99d5f;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.contract-org-close:hover {
  color: #e9c37a;
}

/* انیمیشن بازشدن از پایین به بالا */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* واکنش‌گرا */
@media (max-width: 1024px) {
  .contract-org-card {
    flex: 1 1 calc(33.333% - 26px);
    max-width: calc(33.333% - 26px);
  }
}
@media (max-width: 768px) {
  .contract-org-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .contract-org-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
