.contact-section {
  background: var(--light-bg, #f8f9fa);
  direction: rtl;
}

.contact-wrapper {
  position: relative;
}

.contact-channel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #001f5211;
  padding: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
  direction: rtl;
  display: flex;
  align-items: center;
  height: 100%;
}

.contact-channel:hover {
  box-shadow: 0 8px 32px #ffbe5921;
  transform: translateY(-4px) scale(1.035);
}

.contact-circle {
  width: 56px;
  height: 56px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 10px #ffbe5914;
  background: linear-gradient(120deg, #ffdb9d 60%, #ffbe59 100%);
  color: #ff5e13;
}

.contact-circle.phone {
  background: linear-gradient(120deg, #ffd2c7 60%, #ff5e13 100%);
  color: #fff;
}

.contact-circle.email {
  background: linear-gradient(120deg, #dbf4fd 60%, #229ed9 100%);
  color: #229ed9;
}

.contact-circle.sms {
  background: linear-gradient(120deg, #e8e6fa 60%, #001f52 100%);
  color: #001f52;
}

.contact-text {
  text-align: right;
  width: 100%;
}

.contact-title {
  font-size: 1.13rem;
  color: var(--primary-color, #001f52);
  margin-bottom: 0.1rem;
}

.contact-desc {
  color: #444;
  font-size: 0.85rem;
}

.contact-id {
  background: #f7f7ff;
  border-radius: 9px;
  padding: 3px 10px;
  font-size: 1.01rem;
  color: #001f52;
  font-family: Vazirmatn, Tahoma, sans-serif;
  direction: ltr;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 4px;
}

/* ------------------ Swiper Mobile ------------------ */

.contact-swiper .swiper-slide {
  height: auto;
}

@media (max-width: 991px) {
  .contact-title {
    font-size: 1.05rem;
  }

  .contact-id {
    font-size: 0.95rem;
  }

  .contact-desc {
    font-size: 0.8rem;
  }

  .contact-channel {
    padding: 18px 80px 18px 80px;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1rem;
  }

  .contact-id {
    font-size: 0.92rem;
  }
}
