/* تصميم حديث لقسم معلومات الاتصال - مطابق للصورة */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: #3b82f6;
}

/* الأيقونة الزرقاء الكبيرة مع ظل */
.contact-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 18px;
  box-shadow: 
    0 8px 20px rgba(59, 130, 246, 0.3),
    0 4px 10px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 12px 30px rgba(59, 130, 246, 0.4),
    0 6px 15px rgba(59, 130, 246, 0.3);
}

/* محتوى معلومات الاتصال */
.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.contact-action,
.contact-value {
  font-size: 1rem;
  color: #3b82f6;
  font-weight: 500;
}

.contact-value {
  color: #64748b;
}

/* تأثيرات خاصة للعناصر التفاعلية */
.interactive-contact {
  position: relative;
  overflow: hidden;
}

.interactive-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.interactive-contact:hover::before {
  left: 100%;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
  .contact-item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
  }
  
  .contact-label {
    font-size: 1.1rem;
  }
  
  .contact-action,
  .contact-value {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-details {
    gap: 1rem;
  }
  
  .contact-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
  
  .contact-icon i {
    font-size: 1.3rem;
  }
  
  .contact-label {
    font-size: 1rem;
  }
  
  .contact-action,
  .contact-value {
    font-size: 0.85rem;
  }
}

/* دعم RTL */
[dir="rtl"] .contact-item {
  flex-direction: row;
}

[dir="ltr"] .contact-item {
  flex-direction: row;
}
