/* تنسيق قسم الخريطة */

.map-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.map-section:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.map-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.map-section p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}

/* معلومات العنوان */
.address-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.address-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.address-item i {
  color: #1e3a8a;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.address-item p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

[dir="rtl"] .address-item p {
  text-align: right;
}

[dir="rtl"] .address-item:hover {
  transform: translateX(-5px);
}

/* تصميم متجاوب */
@media (max-width: 768px) {
  .map-section {
    padding: 1.5rem;
  }
  
  .map-section h4 {
    font-size: 1.25rem;
  }
  
  .map-section p {
    font-size: 0.9rem;
  }
  
  .map-container iframe {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 1rem;
  }
  
  .map-container iframe {
    min-height: 200px;
  }
}
