/* =========================================
   استایل‌های اختصاصی صفحه درباره ما و ارتباط با پشتیبانی
========================================= */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  align-items: stretch;
}

.about-info-panel {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(145deg, rgba(20, 25, 40, 0.7), rgba(15, 20, 35, 0.9));
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.about-form-panel {
  flex: 1.5;
  min-width: 300px;
  background: linear-gradient(145deg, rgba(20, 25, 40, 0.6), rgba(10, 15, 25, 0.8));
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.about-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: #fbbf24;
  box-shadow: 0 0 20px #fbbf24;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-5px);
  border-color: rgba(56, 189, 248, 0.4);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.2);
}

.contact-info h4 { color: #94a3b8; margin: 0 0 5px 0; font-size: 0.9rem; }
.contact-info p { color: #fff; margin: 0; font-weight: bold; font-size: 1.1rem; direction: ltr; text-align: right; }
textarea.input-field { resize: vertical; min-height: 150px; font-family: 'Vazirmatn', sans-serif; line-height: 1.8; border-radius: 15px; }
.page-title { font-size: 2.2rem; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.page-desc { color: #94a3b8; font-size: 1.05rem; margin-bottom: 40px; line-height: 1.8; }
@media(max-width: 768px) { .about-container { flex-direction: column; } .about-info-panel, .about-form-panel { padding: 25px 20px; } .page-title { font-size: 1.8rem; } }