

/* استایل برای صفحه تماس با ما */
.support-content {
  margin: 4rem 0;
}

.support-info p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.support-feature {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.support-feature i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.support-feature h3 {
  color: var(--lighter);
  margin-bottom: 0.5rem;
}

.support-feature p {
  color: #cbd5e1;
  margin: 0;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.support-btn:hover {
  transform: translateY(-5px);
}

.btn-bale {
  background: linear-gradient(135deg, #00d170, #00b25c);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 209, 112, 0.4);
}

.btn-ita {
  background: linear-gradient(135deg, #ff7a00, #ff5e00);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

.btn-telegram {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.support-note {
  background: rgba(99, 102, 241, 0.1);
  border-right: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.support-note i {
  color: var(--secondary);
  font-size: 2rem;
}

.support-note p {
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.support-note a {
  color: var(--secondary);
  text-decoration: none;
}

.support-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .logo-text {
    display: none;
  }
}



