/* Contact ساده */
.contact-simple {
  background: var(--light-grey);
}

.contact-simple__info,
.contact-simple__card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.contact-simple__title {
  color: var(--dark-grey);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.contact-simple__desc {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.9;
}

.contact-simple__list li {
  color: rgba(0, 0, 0, 0.75);
  padding: 10px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.contact-simple__list li:first-child {
  border-top: 0;
}

.contact-simple__list a {
  color: var(--dark-grey);
  text-decoration: none;
}
.contact-simple__list a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-simple__list i {
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 2px;
}

/* کنترل‌های فرم (حس صنعتی/مینیمال) */
.contact-simple__control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 12px 14px;
  transition: var(--transition);
  background: #fff;
}

.contact-simple__control:focus {
  border-color: rgba(26, 77, 46, 0.55); /* #1A4D2E */
  box-shadow: 0 0 0 0.2rem rgba(26, 77, 46, 0.15);
}

/* دکمه ارسال با رنگ دقیق */
.contact-simple__btn {
  background: var(--dark-grey);
  color: #fff;
  border: 1px solid #1a4d2e;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.contact-simple__btn:hover {
  background: #1a4d2e;
  border-color: var(--dark-grey);
  color: #fff;
}

.contact-simple__hint {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
}

/* کپچا */
.contact-simple__captcha {
  display: grid;
  grid-template-columns: 52px 120px 1fr;
  gap: 10px;
  align-items: stretch;
  direction: rtl;
}

.contact-simple__captcha-question {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.contact-simple__captcha-refresh {
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: var(--dark-grey);
  border-radius: 12px;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-simple__captcha-refresh:hover {
  background: #f3f5f4;
  color: var(--primary-color);
  border-color: rgba(26, 77, 46, 0.35);
}

.contact-simple__captcha-refresh:focus {
  outline: 0;
  border-color: rgba(26, 77, 46, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(26, 77, 46, 0.15);
}

.contact-simple__captcha-input {
  text-align: right;
  direction: rtl;
}

/* موبایل */
@media (max-width: 576px) {
  .contact-simple__captcha {
    grid-template-columns: 48px 100px 1fr;
    gap: 8px;
  }

  .contact-simple__captcha-question,
  .contact-simple__captcha-refresh {
    min-height: 44px;
  }
}
