.contact-section {

  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  font-family: 'IranSans', sans-serif;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-row.rtl {
  direction: rtl;
  flex-direction: row;
}

.contact-row.ltr {
  direction: ltr;
  flex-direction: row-reverse;
}

.contact-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-info {
  flex: 1;
  color: white;
  text-align: start;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 2;
  margin: 4px 0;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .contact-image img {
    width: 180px;
    height: 180px;
  }

  .contact-info h2 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 14px;
  }
}


.contact-image {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white; /* بوردر داخلی */
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* بوردر بیرونی با فاصله */
.contact-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 1;
}

.contact-wrapper {
  background-color: rgba(0, 47, 95, 0.3); /* سرمه‌ای با شفافیت */
  backdrop-filter: blur(12px); /* افکت بلور */
  -webkit-backdrop-filter: blur(12px); /* برای Safari */
  border-radius: 16px;
  padding: 40px;
}
