.branches-section {
  max-width: 1100px;
  margin: 60px auto;
  direction: rtl;
  font-family: Tahoma, Arial, sans-serif;
}

.branches-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #111;
}

.city-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0 20px;
  color: #111;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.branch-card {
  background: #faf8f5;
  border: 1px solid #e6dfd4;
  border-radius: 14px;
  padding: 20px 15px;
  text-decoration: none;
  color: #111;
  text-align: center;
  transition: 0.3s;
}

.branch-card:hover {
  transform: translateY(-5px);
  border-color: #c9a24d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.branch-card::before {
  content: "📍";
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: #c9a24d;
}

.branch-name {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.branch-details {
  font-size: 13px;
  color: #777;
}